[llvm] [llvm-objcopy] Add --skip-symbol and --skip-symbols options (PR #80873)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 14 01:57:13 PDT 2024
================
@@ -464,6 +464,18 @@ them.
Read a list of symbols from <filename> and change their visibility to the
specified value. Visibility values: default, internal, hidden, protected.
+.. option:: --skip-symbol <symbol>
+
+ Do not change parameters of symbol <symbol> when executing other options that
+ can change the symbol's name, binding or visibility.
+
+.. option:: --skip-symbols <filename>
+
+ Read a list of symbols from <filename> and run as if --skip-symbol=<symbol>
+ is set for each one. <filename> contains one symbol per line and may contain
----------------
jh7370 wrote:
Please add backticks around `<filename>` in the same manner as other similar references in the doc. Similarly, please change the markdown for the `--skip-symbol` option reference in this text, so that it provides the auto link that you get with other option references.
https://github.com/llvm/llvm-project/pull/80873
More information about the llvm-commits
mailing list