File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,17 @@ include(AddSwiftStdlib)
7
7
8
8
# Create convenience targets for the Swift standard library.
9
9
10
+ # NOTE(compnerd) this will pass the *build* configuration to the *host*
11
+ # libraries. Explicitly indicate to CMake that it should **NOT** track the
12
+ # implicit language runtimes. This can go away once we migrate to an external
13
+ # project with its own configure with the CMAKE_SYSTEM_NAME set rather than
14
+ # using the custom cross-compilation solution
15
+ set (CMAKE_C_IMPLICIT_LINK_LIBRARIES "" )
16
+ set (CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "" )
17
+
18
+ set (CMAKE_C_IMPLICIT_LINK_DIRECTORIES "" )
19
+ set (CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "" )
20
+
10
21
# NOTE(compnerd) save the original compiler for the host swiftReflection that
11
22
# we build
12
23
set (HOST_CMAKE_CXX_COMPILER ${CMAKE_CXX_COMPILER} )
You can’t perform that action at this time.
0 commit comments