Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix C++ interop in SwiftCompilerSources #73653

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions SwiftCompilerSources/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ function(add_swift_compiler_modules_library name)
"-Xfrontend" "${SWIFT_MIN_RUNTIME_VERSION}")
endif()
list(APPEND swift_compile_options "-Xfrontend" "-disable-implicit-string-processing-module-import")

# We cannot use Unsafe*Pointer when importing C++ move-only types until the
# host libraries are updated to Swift 6.0, because that importing strategy
# requires _Pointer have its Pointee: ~Copyable. (rdar://128013193)
list(APPEND swift_compile_options "-Xfrontend" "-cxx-interop-use-opaque-pointer-for-moveonly")
endif()

if(CMAKE_BUILD_TYPE STREQUAL "Debug")
Expand Down