mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-18 13:34:04 +00:00
[llvm-objdump] Fix -private-headers for mach-o to print all LC_*_DYLIB variants
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d8214db086
commit
fb02b5c37f
@ -2566,7 +2566,12 @@ static void PrintLoadCommands(const MachOObjectFile *Obj, uint32_t ncmds,
|
|||||||
} else if (Command.C.cmd == MachO::LC_MAIN) {
|
} else if (Command.C.cmd == MachO::LC_MAIN) {
|
||||||
MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
|
MachO::entry_point_command Ep = Obj->getEntryPointCommand(Command);
|
||||||
PrintEntryPointCommand(Ep);
|
PrintEntryPointCommand(Ep);
|
||||||
} else if (Command.C.cmd == MachO::LC_LOAD_DYLIB) {
|
} else if (Command.C.cmd == MachO::LC_LOAD_DYLIB ||
|
||||||
|
Command.C.cmd == MachO::LC_ID_DYLIB ||
|
||||||
|
Command.C.cmd == MachO::LC_LOAD_WEAK_DYLIB ||
|
||||||
|
Command.C.cmd == MachO::LC_REEXPORT_DYLIB ||
|
||||||
|
Command.C.cmd == MachO::LC_LAZY_LOAD_DYLIB ||
|
||||||
|
Command.C.cmd == MachO::LC_LOAD_UPWARD_DYLIB) {
|
||||||
MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command);
|
MachO::dylib_command Dl = Obj->getDylibIDLoadCommand(Command);
|
||||||
PrintDylibCommand(Dl, Command.Ptr);
|
PrintDylibCommand(Dl, Command.Ptr);
|
||||||
} else if (Command.C.cmd == MachO::LC_CODE_SIGNATURE ||
|
} else if (Command.C.cmd == MachO::LC_CODE_SIGNATURE ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user