From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1594) id 5CF943858C51; Tue, 2 Aug 2022 23:26:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5CF943858C51 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Cary Coutant To: bfd-cvs@sourceware.org Subject: [binutils-gdb] Add ELFCOMPRESS_ZSTD. X-Act-Checkin: binutils-gdb X-Git-Author: Cary Coutant X-Git-Refname: refs/heads/master X-Git-Oldrev: 13db4a0c4d307541926e503ed066b3bc17277678 X-Git-Newrev: 03d0ae791f7dca2006b924e90ee4e4944b848260 Message-Id: <20220802232611.5CF943858C51@sourceware.org> Date: Tue, 2 Aug 2022 23:26:11 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Aug 2022 23:26:11 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D03d0ae791f7d= ca2006b924e90ee4e4944b848260 commit 03d0ae791f7dca2006b924e90ee4e4944b848260 Author: Cary Coutant Date: Tue Aug 2 16:19:43 2022 -0700 Add ELFCOMPRESS_ZSTD. =20 include/elf/ * common.h: Add ELFCOMPRESS_ZSTD. Diff: --- include/elf/common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/elf/common.h b/include/elf/common.h index e4bc53e35b4..ebcd8f9e82c 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -588,6 +588,8 @@ =20 /* 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 = */