diff options
author | Adrian Prantl <aprantl@apple.com> | 2021-11-09 16:00:29 -0800 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2022-02-22 11:06:27 -0800 |
commit | 621e2de138f70e175512c18d9f358666de93e838 (patch) | |
tree | 3b5081676a140442dd9f738cade83287e67a53bc /llvm/docs/CommandGuide | |
parent | de2cc2a00298a952aeee1883086e4c614259333a (diff) | |
download | llvm-621e2de138f70e175512c18d9f358666de93e838.zip llvm-621e2de138f70e175512c18d9f358666de93e838.tar.gz llvm-621e2de138f70e175512c18d9f358666de93e838.tar.bz2 |
Add a (nonfunctional) -dyld_info flag to llvm-objdump.
Darwin otool implements this flag as a one-stop solution for
displaying bind and rebase info. As I am working on upstreaming
chained fixup support this command will be useful to write testcases.
Differential Revision: https://reviews.llvm.org/D113573
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objdump.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objdump.rst b/llvm/docs/CommandGuide/llvm-objdump.rst index cbc525fb..5ee4b83 100644 --- a/llvm/docs/CommandGuide/llvm-objdump.rst +++ b/llvm/docs/CommandGuide/llvm-objdump.rst @@ -302,6 +302,11 @@ MACH-O ONLY OPTIONS AND COMMANDS Disassemble just the specified symbol's instructions. +.. option:: --dyld_info + + Print bind and rebase information used by dyld to resolve external + references in a final linked binary. + .. option:: --dylibs-used Display the shared libraries used for linked files. |