mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
f713e907c2
llvm-lib is intended to be a lib.exe compatible utility that also understands bitcode. The implementation lives in a library so that lld can use it to implement /lib. Differential Revision: http://reviews.llvm.org/D10297 llvm-svn: 239434
9 lines
238 B
CMake
9 lines
238 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(LibOptionsTableGen)
|
|
|
|
add_llvm_library(LLVMLibDriver
|
|
LibDriver.cpp
|
|
)
|
|
add_dependencies(LLVMLibDriver LibOptionsTableGen)
|