llvm-project/lld/MachO/CMakeLists.txt
Keith Smiley 48e5f704c5
[lld-macho] Remove linking bitcode support
Apple deprecated bitcode in the deployment process in Xcode 14.0. Last
month Apple started requiring Xcode 14.1+ to submit apps to the App
Store. Since there isn't a use for bundling bitcode outside of
submitting to the App Store we should be safe to delete this handling
entirely from LLD.

Differential Revision: https://reviews.llvm.org/D150697
2023-05-30 14:47:11 -07:00

62 lines
1000 B
CMake

set(LLVM_TARGET_DEFINITIONS Options.td)
tablegen(LLVM Options.inc -gen-opt-parser-defs)
add_public_tablegen_target(MachOOptionsTableGen)
include_directories(${LLVM_MAIN_SRC_DIR}/../libunwind/include)
add_lld_library(lldMachO
Arch/ARM64.cpp
Arch/ARM64Common.cpp
Arch/ARM64_32.cpp
Arch/X86_64.cpp
ConcatOutputSection.cpp
Driver.cpp
DriverUtils.cpp
Dwarf.cpp
EhFrame.cpp
ExportTrie.cpp
ICF.cpp
InputFiles.cpp
InputSection.cpp
LTO.cpp
MapFile.cpp
MarkLive.cpp
ObjC.cpp
OutputSection.cpp
OutputSegment.cpp
Relocations.cpp
SectionPriorities.cpp
SymbolTable.cpp
Symbols.cpp
SyntheticSections.cpp
Target.cpp
UnwindInfoSection.cpp
Writer.cpp
LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
BinaryFormat
BitReader
BitWriter
Core
DebugInfoDWARF
Demangle
LTO
MC
ObjCARCOpts
Object
Option
Passes
Support
TargetParser
TextAPI
LINK_LIBS
lldCommon
${LLVM_PTHREAD_LIB}
DEPENDS
MachOOptionsTableGen
${tablegen_deps}
)