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 5dd5031 commit 67aaa16Copy full SHA for 67aaa16
CMakeLists.txt
@@ -14,6 +14,11 @@ set(CMAKE_MODULE_PATH
14
15
include(CMakeFunctions)
16
17
+if(LLVM_USE_HOST_TOOLS)
18
+ include(CrossCompile)
19
+ llvm_create_cross_target(${PROJECT_NAME} NATIVE "" Release)
20
+endif()
21
+
22
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
23
set(USE_PREBUILT_LLVM ON)
24
@@ -55,7 +60,7 @@ include(AddLLVM)
55
60
include(TableGen)
56
61
57
62
if (NOT WIN32)
58
- add_subdirectory( linux_linker )
63
+ add_subdirectory( linux_linker bin )
59
64
endif()
65
66
if (CMAKE_SIZEOF_VOID_P EQUAL 4)
0 commit comments