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 8256846 commit a723e6dCopy full SHA for a723e6d
cmake/modules/Libdispatch.cmake
@@ -47,7 +47,8 @@ endif()
47
# Build any target libdispatch if needed.
48
foreach(sdk ${SWIFT_SDKS})
49
# Darwin targets have libdispatch available, do not build it.
50
- if(NOT "${sdk}" IN_LIST SWIFT_DARWIN_PLATFORMS)
+ # Wasm/WASI doesn't support libdispatch yet. See https://bugs.swift.org/browse/SR-12097 for more details.
51
+ if(NOT "${sdk}" IN_LIST SWIFT_DARWIN_PLATFORMS AND NOT "${sdk}" STREQUAL WASI)
52
list(APPEND DISPATCH_SDKS "${sdk}")
53
endif()
54
endforeach()
0 commit comments