
> Add support for reading binary Mach-o dynamic libraries. It uses libObject APIs for extracting information relevant to TAPI and tbd files. This includes but is not limited to load commands encode data like install names, current/compat versions, and symbols. This originally broke because DylibReader uses Object and Object depends on TextAPI. Breaking this up in a nested library prevents this cycle.
10 lines
134 B
CMake
10 lines
134 B
CMake
add_llvm_component_library(LLVMTextAPIBinaryReader
|
|
DylibReader.cpp
|
|
|
|
LINK_COMPONENTS
|
|
Support
|
|
Object
|
|
TextAPI
|
|
TargetParser
|
|
)
|