mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Build CompilerDriver library.
llvm-svn: 127554
This commit is contained in:
parent
a153a45c99
commit
208de1fcc4
@ -7,6 +7,7 @@ add_subdirectory(Transforms)
|
||||
add_subdirectory(Linker)
|
||||
add_subdirectory(Analysis)
|
||||
add_subdirectory(MC)
|
||||
add_subdirectory(CompilerDriver)
|
||||
add_subdirectory(Object)
|
||||
add_subdirectory(ExecutionEngine)
|
||||
add_subdirectory(Target)
|
||||
|
@ -1,10 +1,12 @@
|
||||
set(LLVM_LINK_COMPONENTS support)
|
||||
set(LLVM_REQUIRES_EH 1)
|
||||
|
||||
add_llvm_tool(llvmc
|
||||
# We don't want this library to appear in `llvm-config --libs` output,
|
||||
# so its name doesn't start with "LLVM".
|
||||
|
||||
add_llvm_library(CompilerDriver
|
||||
Action.cpp
|
||||
BuiltinOptions.cpp
|
||||
CompilationGraph.cpp
|
||||
llvmc.cpp
|
||||
Plugin.cpp
|
||||
Main.cpp
|
||||
Tool.cpp
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user