mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
96c406a887
FaultsMapParser lived in CodeGen and was forcing llvm-objdump to link CodeGen and everything CodeGen depends on. This was previously attempted in r240364 to fix a link failure. The CodeGen dependency was independently added to fix the same link failure, and that ended up being kept. Removing the dependency seems like the correct layering for llvm-objdump. Reviewed By: MaskRay, jhenderson Differential Revision: https://reviews.llvm.org/D95414
49 lines
823 B
CMake
49 lines
823 B
CMake
add_llvm_component_library(LLVMObject
|
|
Archive.cpp
|
|
ArchiveWriter.cpp
|
|
Binary.cpp
|
|
COFFImportFile.cpp
|
|
COFFModuleDefinition.cpp
|
|
COFFObjectFile.cpp
|
|
Decompressor.cpp
|
|
ELF.cpp
|
|
ELFObjectFile.cpp
|
|
Error.cpp
|
|
FaultMapParser.cpp
|
|
IRObjectFile.cpp
|
|
IRSymtab.cpp
|
|
MachOObjectFile.cpp
|
|
MachOUniversal.cpp
|
|
Minidump.cpp
|
|
ModuleSymbolTable.cpp
|
|
Object.cpp
|
|
ObjectFile.cpp
|
|
RecordStreamer.cpp
|
|
RelocationResolver.cpp
|
|
SymbolicFile.cpp
|
|
SymbolSize.cpp
|
|
TapiFile.cpp
|
|
TapiUniversal.cpp
|
|
MachOUniversalWriter.cpp
|
|
WasmObjectFile.cpp
|
|
WindowsMachineFlag.cpp
|
|
WindowsResource.cpp
|
|
XCOFFObjectFile.cpp
|
|
|
|
ADDITIONAL_HEADER_DIRS
|
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/Object
|
|
|
|
DEPENDS
|
|
intrinsics_gen
|
|
llvm_vcsrevision_h
|
|
|
|
LINK_COMPONENTS
|
|
BitReader
|
|
Core
|
|
MC
|
|
BinaryFormat
|
|
MCParser
|
|
Support
|
|
TextAPI
|
|
)
|