diff options
author | Kevin Enderby <enderby@apple.com> | 2015-03-16 20:08:09 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2015-03-16 20:08:09 +0000 |
commit | bc847fa4eddb28fbc18d8b28f1dc2c431ee0977e (patch) | |
tree | 2e0822ec30179daea63eda64a80b247c6a689486 /llvm/tools/llvm-objdump/llvm-objdump.h | |
parent | 928c39381060ff61ad7610dc1a8bb446bb41ddcd (diff) | |
download | bcm5719-llvm-bc847fa4eddb28fbc18d8b28f1dc2c431ee0977e.tar.gz bcm5719-llvm-bc847fa4eddb28fbc18d8b28f1dc2c431ee0977e.zip |
Add the options, -dylibs-used and -dylib-id to llvm-objdump used with -macho
to print the Mach-O dynamic shared libraries used by a linked image or the
library id of a shared library.
llvm-svn: 232406
Diffstat (limited to 'llvm/tools/llvm-objdump/llvm-objdump.h')
-rw-r--r-- | llvm/tools/llvm-objdump/llvm-objdump.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/llvm-objdump/llvm-objdump.h b/llvm/tools/llvm-objdump/llvm-objdump.h index 434a10e677d..68cb4374dff 100644 --- a/llvm/tools/llvm-objdump/llvm-objdump.h +++ b/llvm/tools/llvm-objdump/llvm-objdump.h @@ -41,6 +41,8 @@ extern cl::opt<bool> IndirectSymbols; extern cl::opt<bool> DataInCode; extern cl::opt<bool> LinkOptHints; extern cl::opt<bool> InfoPlist; +extern cl::opt<bool> DylibsUsed; +extern cl::opt<bool> DylibId; extern cl::opt<bool> NonVerbose; extern cl::opt<bool> Relocations; extern cl::opt<bool> SectionHeaders; |