[PATCH] D85655: [llvm-install-name-tool] Add more documentation

Sameer Arora via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 11 07:15:07 PDT 2020


sameerarora101 updated this revision to Diff 284706.
sameerarora101 marked an inline comment as done.
sameerarora101 added a comment.

Remove extra lines.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D85655/new/

https://reviews.llvm.org/D85655

Files:
  llvm/docs/CommandGuide/llvm-install-name-tool.rst


Index: llvm/docs/CommandGuide/llvm-install-name-tool.rst
===================================================================
--- llvm/docs/CommandGuide/llvm-install-name-tool.rst
+++ llvm/docs/CommandGuide/llvm-install-name-tool.rst
@@ -20,7 +20,9 @@
 OPTIONS
 --------
 At least one of the following options are required, and some options can be
-combined with other options:
+combined with other options. Options :option:`-add_rpath`, :option:`-delete_rpath`,
+and :option:`-rpath` can be combined in an invocation only if they do not share
+the same `<rpath>` value.
 
 .. option:: -add_rpath <rpath>
 
@@ -28,16 +30,35 @@
  times to add multiple rpaths. Throws an error if ``<rpath>`` is already listed in
  the binary.
 
+.. option:: -change <old_install_name> <new_install_name>
+
+ Change an install name ``<old_install_name>`` to ``<new_install_name>`` in the
+ specified binary. Can be specified multiple times to change multiple dependent shared
+ library install names. Option is ignored if ``<old_install_name>`` is not listed
+ in the specfied binary.
+
 .. option:: -delete_rpath <rpath>
 
  Delete an rpath named ``<rpath>`` from the specified binary. Can be specified multiple
  times to delete multiple rpaths. Throws an error if ``<rpath>`` is not listed in
  the binary.
 
+.. option:: -id <name>
+
+ Change shared library's identification name under LC_ID_DYLIB to ``<name>`` in the
+ specfied binary. If specified multiple times, only the last :option:`-id` option is
+ selected. Option is ignored if the specified Mach-O binary is not a dynamic shared library.
+
+.. option:: -rpath <old_rpath> <new_rpath>
+
+ Change an rpath named ``<old_rpath>`` to ``<new_rpath>`` in the specified binary. Can be specified
+ multiple times to change multiple rpaths. Throws an error if ``<old_rpath>`` is not listed
+ in the binary or ``<new_rpath>`` is already listed in the binary.
+
 EXIT STATUS
 -----------
 
-:program:`llvm-install-name-tool` exits with a non-zero exit code of 1 if there is an error.
+:program:`llvm-install-name-tool` exits with a non-zero exit code if there is an error.
 Otherwise, it exits with code 0.
 
 BUGS


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D85655.284706.patch
Type: text/x-patch
Size: 2148 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200811/1f40c1df/attachment.bin>


More information about the llvm-commits mailing list