diff options
author | Cary Coutant <ccoutant@gmail.com> | 2022-08-02 16:19:43 -0700 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2022-08-02 16:19:43 -0700 |
commit | 03d0ae791f7dca2006b924e90ee4e4944b848260 (patch) | |
tree | f4d8ad3012e958f39860fcc518b11e7fcbeca2ce /include | |
parent | 13db4a0c4d307541926e503ed066b3bc17277678 (diff) | |
download | gdb-03d0ae791f7dca2006b924e90ee4e4944b848260.zip gdb-03d0ae791f7dca2006b924e90ee4e4944b848260.tar.gz gdb-03d0ae791f7dca2006b924e90ee4e4944b848260.tar.bz2 |
Add ELFCOMPRESS_ZSTD.
include/elf/
* common.h: Add ELFCOMPRESS_ZSTD.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index e4bc53e..ebcd8f9 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -588,6 +588,8 @@ /* Compression types. */ #define ELFCOMPRESS_ZLIB 1 /* Compressed with zlib. */ +#define ELFCOMPRESS_ZSTD 2 /* Compressed with zstd */ + /* (see http://www.zstandard.org). */ #define ELFCOMPRESS_LOOS 0x60000000 /* OS-specific semantics, lo */ #define ELFCOMPRESS_HIOS 0x6FFFFFFF /* OS-specific semantics, hi */ #define ELFCOMPRESS_LOPROC 0x70000000 /* Processor-specific semantics, lo */ |