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 d604b9b commit 3fed6e5Copy full SHA for 3fed6e5
lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp
@@ -1183,7 +1183,9 @@ static const char *getImportFailureString(swift::serialization::Status status) {
1183
case swift::serialization::Status::SDKMismatch:
1184
return "The module file was built with a different SDK version.";
1185
case swift::serialization::Status::ChannelIncompatible:
1186
- return "The distribution channel doesn't match.";
+ return "The distribution channel doesn't match."
1187
+ " This version of LLDB is most likely from a different toolchain"
1188
+ " than the Swift compiler that built this module.";
1189
}
1190
1191
0 commit comments