forked from OSchip/llvm-project
[ms-inline asm] Add various MC components to clang build to support MS-style inline assembly.
llvm-svn: 161594
This commit is contained in:
parent
db5743d1b4
commit
bf40d6b6a5
|
@ -1,4 +1,6 @@
|
|||
set( LLVM_LINK_COMPONENTS
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
||||
add_clang_executable(clang-check
|
||||
ClangCheck.cpp
|
||||
)
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
set( LLVM_LINK_COMPONENTS
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
||||
add_clang_executable(diagtool
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
set( LLVM_LINK_COMPONENTS
|
||||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
||||
add_clang_unittest(ASTMatchersTests
|
||||
ASTMatchersTest.cpp)
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
||||
add_clang_unittest(FrontendTests
|
||||
FrontendActionTest.cpp
|
||||
)
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
set(LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
support
|
||||
mc
|
||||
)
|
||||
|
||||
add_clang_unittest(ToolingTests
|
||||
CommentHandlerTest.cpp
|
||||
CompilationDatabaseTest.cpp
|
||||
|
|
Loading…
Reference in New Issue