mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[cxx-interop] Allow compiling with libc++ on Linux
This makes sure that Swift respects `-Xcc -stdlib=libc++` flags. Clang already has existing logic to discover the system-wide libc++ installation on Linux. We rely on that logic here. Importing a Swift module that was built with a different C++ stdlib is not supported and emits an error. The Cxx module can be imported when compiling with any C++ stdlib. The synthesized conformances, e.g. to CxxRandomAccessCollection also work. However, CxxStdlib currently cannot be imported when compiling with libc++, since on Linux it refers to symbols from libstdc++ which have different mangled names in libc++. rdar://118357548 / https://github.com/swiftlang/swift/issues/69825
This commit is contained in:
@@ -725,6 +725,7 @@ ModuleDecl::ModuleDecl(Identifier name, ASTContext &ctx,
|
||||
Bits.ModuleDecl.IsConcurrencyChecked = 0;
|
||||
Bits.ModuleDecl.ObjCNameLookupCachePopulated = 0;
|
||||
Bits.ModuleDecl.HasCxxInteroperability = 0;
|
||||
Bits.ModuleDecl.CXXStdlibKind = 0;
|
||||
Bits.ModuleDecl.AllowNonResilientAccess = 0;
|
||||
Bits.ModuleDecl.SerializePackageEnabled = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user