diff options
author | Seiya Nuta <nuta@seiya.me> | 2019-11-15 12:37:55 +0900 |
---|---|---|
committer | Seiya Nuta <nuta@seiya.me> | 2019-11-15 14:20:11 +0900 |
commit | bc11830c6a67025186d39fd9de6e49b3b570e2bd (patch) | |
tree | 61ccbdd4058ac307ce640b68b30266721d14067c /llvm/docs/CommandGuide | |
parent | 3466cebe94ba461b296bb1314e76118cc2823dfb (diff) | |
download | bcm5719-llvm-bc11830c6a67025186d39fd9de6e49b3b570e2bd.tar.gz bcm5719-llvm-bc11830c6a67025186d39fd9de6e49b3b570e2bd.zip |
[llvm-objcopy][MachO] Implement --remove-section
Reviewers: alexshap, rupprecht, jhenderson
Reviewed By: rupprecht, jhenderson
Subscribers: jakehehrlich, abrachet, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66282
Diffstat (limited to 'llvm/docs/CommandGuide')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objcopy.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objcopy.rst b/llvm/docs/CommandGuide/llvm-objcopy.rst index 9d7cab99e75..689ebb7549f 100644 --- a/llvm/docs/CommandGuide/llvm-objcopy.rst +++ b/llvm/docs/CommandGuide/llvm-objcopy.rst @@ -107,6 +107,9 @@ multiple file formats. Remove the specified section from the output. Can be specified multiple times to remove multiple sections simultaneously. + For MachO objects, ``<section>`` must be formatted as + ``<segment name>,<section name>``. + .. option:: --set-section-alignment <section>=<align> Set the alignment of section ``<section>`` to `<align>``. Can be specified |