diff options
author | Fangrui Song <i@maskray.me> | 2022-07-28 10:45:53 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-07-28 10:45:53 -0700 |
commit | c26dc2904b95b3685d883e760e84046ea6c33d7f (patch) | |
tree | f4c5a8e7f57d8ad4c7d68e0330b1e2126a5a2404 /llvm/docs/CommandGuide/llvm-objcopy.rst | |
parent | f5b21680d1221d7acaa1b174d0b86fa907c71eb8 (diff) | |
download | llvm-c26dc2904b95b3685d883e760e84046ea6c33d7f.zip llvm-c26dc2904b95b3685d883e760e84046ea6c33d7f.tar.gz llvm-c26dc2904b95b3685d883e760e84046ea6c33d7f.tar.bz2 |
[llvm-objcopy] Support --{,de}compress-debug-sections for zstd
Also, add ELFCOMPRESS_ZSTD (2) from the approved generic-abi proposal:
https://groups.google.com/g/generic-abi/c/satyPkuMisk
("Add new ch_type value: ELFCOMPRESS_ZSTD")
Link: https://discourse.llvm.org/t/rfc-zstandard-as-a-second-compression-method-to-llvm/63399
("[RFC] Zstandard as a second compression method to LLVM")
Differential Revision: https://reviews.llvm.org/D130458
Diffstat (limited to 'llvm/docs/CommandGuide/llvm-objcopy.rst')
-rw-r--r-- | llvm/docs/CommandGuide/llvm-objcopy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-objcopy.rst b/llvm/docs/CommandGuide/llvm-objcopy.rst index 01bb43e..8894a7f 100644 --- a/llvm/docs/CommandGuide/llvm-objcopy.rst +++ b/llvm/docs/CommandGuide/llvm-objcopy.rst @@ -299,7 +299,7 @@ them. .. option:: --compress-debug-sections [<format>] Compress DWARF debug sections in the output, using the specified format. - Supported formats are ``zlib``. Use ``zlib`` if ``<format>`` is omitted. + Supported formats are ``zlib`` and ``zstd``. Use ``zlib`` if ``<format>`` is omitted. .. option:: --decompress-debug-sections |