mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
PrintFunctionNames: Fix Windows (MSV{S,C} and mingw) build.
llvm-svn: 113835
This commit is contained in:
@@ -2,6 +2,34 @@ set(MODULE TRUE)
|
||||
|
||||
set(LLVM_NO_RTTI 1)
|
||||
|
||||
set( LLVM_USED_LIBS
|
||||
clangFrontendTool
|
||||
clangFrontend
|
||||
clangDriver
|
||||
clangSerialization
|
||||
clangCodeGen
|
||||
clangParse
|
||||
clangSema
|
||||
clangChecker
|
||||
clangAnalysis
|
||||
clangIndex
|
||||
clangRewrite
|
||||
clangAST
|
||||
clangLex
|
||||
clangBasic
|
||||
)
|
||||
|
||||
# Why do we have to link to all this just to print out function names?
|
||||
set( LLVM_LINK_COMPONENTS
|
||||
${LLVM_TARGETS_TO_BUILD}
|
||||
asmparser
|
||||
bitreader
|
||||
bitwriter
|
||||
codegen
|
||||
ipo
|
||||
selectiondag
|
||||
)
|
||||
|
||||
add_clang_library(PrintFunctionNames PrintFunctionNames.cpp)
|
||||
|
||||
set_target_properties(PrintFunctionNames
|
||||
|
||||
Reference in New Issue
Block a user