@@ -1168,7 +1168,8 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation,
1168
1168
const std::string &m_description,
1169
1169
llvm::raw_ostream &error,
1170
1170
bool &got_serialized_options,
1171
- bool &found_swift_modules) {
1171
+ bool &found_swift_modules,
1172
+ bool search_paths_only = false ) {
1172
1173
bool found_validation_errors = false ;
1173
1174
got_serialized_options = false ;
1174
1175
@@ -1278,7 +1279,7 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation,
1278
1279
1279
1280
// / Initialize the compiler invocation with it the search paths from a
1280
1281
// / serialized AST.
1281
- auto deserializeCompilerFlags = [&]() -> bool {
1282
+ auto deserializeCompilerFlags = [&](swift::CompilerInvocation &invocation) {
1282
1283
auto result = invocation.loadFromSerializedAST (moduleData);
1283
1284
if (result != swift::serialization::Status::Valid) {
1284
1285
error << " Could not deserialize " << info.name << " :\n "
@@ -1401,13 +1402,17 @@ static bool DeserializeAllCompilerFlags(swift::CompilerInvocation &invocation,
1401
1402
return true ;
1402
1403
};
1403
1404
1404
- got_serialized_options |= deserializeCompilerFlags ();
1405
-
1406
- LOG_PRINTF (
1407
- GetLog (LLDBLog::Types), " SDK path from module \" %s\" was \" %s\" ." ,
1408
- info.name .str ().c_str (), invocation.getSDKPath ().str ().c_str ());
1409
- // We will deduce a matching SDK path from DWARF later.
1410
- invocation.setSDKPath (" " );
1405
+ if (search_paths_only) {
1406
+ swift::CompilerInvocation fresh_invocation;
1407
+ got_serialized_options |= deserializeCompilerFlags (fresh_invocation);
1408
+ } else {
1409
+ got_serialized_options |= deserializeCompilerFlags (invocation);
1410
+ LOG_PRINTF (
1411
+ GetLog (LLDBLog::Types), " SDK path from module \" %s\" was \" %s\" ." ,
1412
+ info.name .str ().c_str (), invocation.getSDKPath ().str ().c_str ());
1413
+ // We will deduce a matching SDK path from DWARF later.
1414
+ invocation.setSDKPath (" " );
1415
+ }
1411
1416
}
1412
1417
}
1413
1418
@@ -8371,7 +8376,7 @@ bool SwiftASTContextForExpressions::CacheUserImports(
8371
8376
invocation, ast_file, {file_or_err->get ()->getBuffer ()},
8372
8377
path_remap, discover_implicit_search_paths,
8373
8378
m_description.str ().str (), errs, got_serialized_options,
8374
- found_swift_modules)) {
8379
+ found_swift_modules, /* search_paths_only = */ true )) {
8375
8380
LOG_PRINTF (GetLog (LLDBLog::Types), " Could not parse %s: %s" ,
8376
8381
ast_file.str ().c_str (), error.str ().str ().c_str ());
8377
8382
}
0 commit comments