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.
2 parents cdfeefc + 9dbdd0c commit d50aaf4Copy full SHA for d50aaf4
CMakeLists.txt
@@ -923,6 +923,12 @@ if (NOT BOOTSTRAPPING_MODE)
923
message(FATAL_ERROR "turning off bootstrapping is not supported anymore")
924
endif()
925
926
+# As a temporary workaround, disable SwiftCompilerSources on
927
+# Windows/ARM64 because the compiler segfaults
928
+if(CMAKE_SYSTEM_NAME STREQUAL "Windows" AND CMAKE_SYSTEM_PROCESSOR MATCHES "ARM64")
929
+ set(BOOTSTRAPPING_MODE "OFF")
930
+endif()
931
+
932
set(SWIFT_RUNTIME_OUTPUT_INTDIR "${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin")
933
set(SWIFT_LIBRARY_OUTPUT_INTDIR "${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/lib")
934
if("${SWIFT_NATIVE_SWIFT_TOOLS_PATH}" STREQUAL "")
0 commit comments