forked from OSchip/llvm-project
parent
4a070dc428
commit
23b702c8de
|
@ -2,6 +2,10 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|||
|
||||
add_clang_executable(clang-query ClangQuery.cpp)
|
||||
target_link_libraries(clang-query
|
||||
clangAST
|
||||
clangASTMatchers
|
||||
clangBasic
|
||||
clangDynamicASTMatchers
|
||||
clangFrontend
|
||||
clangQuery
|
||||
clangTooling
|
||||
|
|
|
@ -17,6 +17,8 @@ add_clang_library(clangTidy
|
|||
clangBasic
|
||||
clangFrontend
|
||||
clangRewriteCore
|
||||
clangSema
|
||||
clangStaticAnalyzerCore
|
||||
clangStaticAnalyzerFrontend
|
||||
clangTooling
|
||||
)
|
||||
|
|
|
@ -9,5 +9,6 @@ add_clang_library(clangTidyGoogleModule
|
|||
clangAST
|
||||
clangASTMatchers
|
||||
clangBasic
|
||||
clangLex
|
||||
clangTidy
|
||||
)
|
||||
|
|
|
@ -11,5 +11,6 @@ add_clang_library(clangTidyMiscModule
|
|||
clangAST
|
||||
clangASTMatchers
|
||||
clangBasic
|
||||
clangLex
|
||||
clangTidy
|
||||
)
|
||||
|
|
|
@ -10,6 +10,7 @@ add_clang_executable(modularize
|
|||
)
|
||||
|
||||
target_link_libraries(modularize
|
||||
clangAST
|
||||
clangBasic
|
||||
clangDriver
|
||||
clangFrontend
|
||||
|
|
|
@ -7,7 +7,11 @@ add_clang_executable(module-map-checker
|
|||
)
|
||||
|
||||
target_link_libraries(module-map-checker
|
||||
clangAST
|
||||
clangBasic
|
||||
clangDriver
|
||||
clangFrontend
|
||||
clangLex
|
||||
clangRewriteFrontend
|
||||
clangTooling
|
||||
)
|
||||
|
|
|
@ -14,6 +14,7 @@ add_extra_unittest(ClangQueryTests
|
|||
target_link_libraries(ClangQueryTests
|
||||
clangAST
|
||||
clangASTMatchers
|
||||
clangDynamicASTMatchers
|
||||
clangQuery
|
||||
clangTooling
|
||||
)
|
||||
|
|
|
@ -31,4 +31,5 @@ add_clang_library(clangAnalysis
|
|||
LINK_LIBS
|
||||
clangAST
|
||||
clangBasic
|
||||
clangLex
|
||||
)
|
||||
|
|
|
@ -13,6 +13,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ScalarOpts
|
||||
Support
|
||||
Target
|
||||
TransformUtils
|
||||
)
|
||||
|
||||
add_clang_library(clangCodeGen
|
||||
|
|
|
@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
Core
|
||||
ExecutionEngine
|
||||
JIT
|
||||
MC
|
||||
Support
|
||||
nativecodegen
|
||||
)
|
||||
|
|
|
@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
Interpreter
|
||||
JIT
|
||||
MC
|
||||
Support
|
||||
nativecodegen
|
||||
)
|
||||
|
|
|
@ -3,6 +3,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
Interpreter
|
||||
JIT
|
||||
MC
|
||||
Support
|
||||
nativecodegen
|
||||
)
|
||||
|
|
|
@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
InstCombine
|
||||
JIT
|
||||
MC
|
||||
ScalarOpts
|
||||
Support
|
||||
nativecodegen
|
||||
|
|
|
@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
InstCombine
|
||||
JIT
|
||||
MC
|
||||
ScalarOpts
|
||||
Support
|
||||
nativecodegen
|
||||
|
|
|
@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
InstCombine
|
||||
JIT
|
||||
MC
|
||||
ScalarOpts
|
||||
Support
|
||||
nativecodegen
|
||||
|
|
|
@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
InstCombine
|
||||
JIT
|
||||
MC
|
||||
ScalarOpts
|
||||
Support
|
||||
TransformUtils
|
||||
|
|
|
@ -8,7 +8,9 @@ set(LLVM_LINK_COMPONENTS
|
|||
Instrumentation
|
||||
Interpreter
|
||||
JIT
|
||||
MC
|
||||
MCJIT
|
||||
Object
|
||||
SelectionDAG
|
||||
Support
|
||||
native
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
Core
|
||||
Object
|
||||
Support
|
||||
)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
Core
|
||||
Object
|
||||
Support
|
||||
)
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
MC
|
||||
Object
|
||||
Support
|
||||
)
|
||||
|
|
|
@ -2,6 +2,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
Core
|
||||
ExecutionEngine
|
||||
Interpreter
|
||||
MC
|
||||
Support
|
||||
)
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
Core
|
||||
ExecutionEngine
|
||||
JIT
|
||||
MC
|
||||
Support
|
||||
nativecodegen
|
||||
)
|
||||
|
|
|
@ -4,6 +4,7 @@ set(LLVM_LINK_COMPONENTS
|
|||
ExecutionEngine
|
||||
IPO
|
||||
JIT
|
||||
MC
|
||||
MCJIT
|
||||
ScalarOpts
|
||||
Support
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
MC
|
||||
MCAnalysis
|
||||
Support
|
||||
)
|
||||
|
||||
add_llvm_unittest(MCTests
|
||||
|
|
Loading…
Reference in New Issue