We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b068ac5 commit 3598797Copy full SHA for 3598797
lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp
@@ -1268,6 +1268,11 @@ static const char *getImportFailureString(swift::serialization::Status status) {
1268
case swift::serialization::Status::TargetTooNew:
1269
return "The module file was built for a target newer than the current "
1270
"target.";
1271
+ case swift::serialization::Status::SDKMismatch:
1272
+ return "The module file was built with a different SDK than the one in use "
1273
+ "to build the client.";
1274
+ case swift::serialization::Status::RevisionIncompatible:
1275
+ return "The precise revision version doesn't match.";
1276
}
1277
1278
0 commit comments