Add the option, -archive-headers, used with -macho to print the Mach-O archive headers to llvm-objdump.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226228 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Kevin Enderby
2015-01-15 23:19:11 +00:00
parent c204f47feb
commit cdfe54f8a9
6 changed files with 151 additions and 3 deletions

View File

@ -892,7 +892,8 @@ int main(int argc, char **argv) {
&& !Bind
&& !LazyBind
&& !WeakBind
&& !(UniversalHeaders && MachOOpt)) {
&& !(UniversalHeaders && MachOOpt)
&& !(ArchiveHeaders && MachOOpt)) {
cl::PrintHelpMessage();
return 2;
}