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 ec6ae86 commit 150a2c2Copy full SHA for 150a2c2
lib/Interpreter/CMakeLists.txt
@@ -2,6 +2,7 @@ if(EMSCRIPTEN)
2
set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE)
3
set(LLVM_LINK_COMPONENTS "")
4
else()
5
+ if(NOT WIN32)
6
set(LLVM_LINK_COMPONENTS
7
${LLVM_TARGETS_TO_BUILD}
8
BinaryFormat
@@ -10,6 +11,9 @@ else()
10
11
OrcJit
12
Support
13
)
14
+ else()
15
+ set(LLVM_LINK_COMPONENTS "")
16
+ endif()
17
# FIXME: Investigate why this needs to be conditionally included.
18
if ("LLVMFrontendDriver" IN_LIST LLVM_AVAILABLE_LIBS)
19
list(APPEND LLVM_LINK_COMPONENTS FrontendDriver)
0 commit comments