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 80abe8c + 547701f commit 9596624Copy full SHA for 9596624
stdlib/public/CMakeLists.txt
@@ -55,8 +55,12 @@ if(SWIFT_BUILD_STDLIB)
55
add_subdirectory(runtime)
56
add_subdirectory(stubs)
57
add_subdirectory(core)
58
- add_subdirectory(SIMDOperators)
59
add_subdirectory(SwiftOnoneSupport)
+
60
+ # NOTE(compnerd) this must come after the SwiftOnoneSupport as the current
61
+ # cross-compilation support has to hand roll the import library setup which
62
+ # requires that the target is setup prior to use.
63
+ add_subdirectory(SIMDOperators)
64
endif()
65
66
if(SWIFT_BUILD_STDLIB OR SWIFT_BUILD_REMOTE_MIRROR)
0 commit comments