mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-09 09:32:20 +00:00
6acd300375
With a fix for http://lab.llvm.org:8011/builders/clang-cmake-armv8-lld/builds/3636 Also trims some unneeded dependencies.
32 lines
509 B
CMake
32 lines
509 B
CMake
set(LLVM_TARGET_DEFINITIONS Options.td)
|
|
tablegen(LLVM Options.inc -gen-opt-parser-defs)
|
|
add_public_tablegen_target(MachOOptionsTableGen)
|
|
|
|
add_lld_library(lldMachO2
|
|
Arch/X86_64.cpp
|
|
Driver.cpp
|
|
InputFiles.cpp
|
|
InputSection.cpp
|
|
OutputSegment.cpp
|
|
SymbolTable.cpp
|
|
Symbols.cpp
|
|
Target.cpp
|
|
Writer.cpp
|
|
|
|
LINK_COMPONENTS
|
|
${LLVM_TARGETS_TO_BUILD}
|
|
BinaryFormat
|
|
Core
|
|
Object
|
|
Option
|
|
Support
|
|
|
|
LINK_LIBS
|
|
lldCommon
|
|
${LLVM_PTHREAD_LIB}
|
|
|
|
DEPENDS
|
|
MachOOptionsTableGen
|
|
${tablegen_deps}
|
|
)
|