From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H2 autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 9152 invoked from network); 2 Aug 2022 17:55:35 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 2 Aug 2022 17:55:35 -0000 Received: (qmail 19551 invoked by uid 550); 2 Aug 2022 17:55:32 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 19519 invoked from network); 2 Aug 2022 17:55:31 -0000 Date: Tue, 2 Aug 2022 13:55:18 -0400 From: Rich Felker To: Fangrui Song Cc: musl@lists.openwall.com Message-ID: <20220802175517.GR7074@brightrain.aerifal.cx> References: <20220726021433.856569-1-i@maskray.me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220726021433.856569-1-i@maskray.me> User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [musl] [PATCH] elf.h: add ELFCOMPRESS_ZSTD On Mon, Jul 25, 2022 at 07:14:33PM -0700, Fangrui Song wrote: > see > > https://groups.google.com/g/generic-abi/c/satyPkuMisk > Add new ch_type value: ELFCOMPRESS_ZSTD > --- > include/elf.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/elf.h b/include/elf.h > index 86e2f0bb..d2231ba0 100644 > --- a/include/elf.h > +++ b/include/elf.h > @@ -436,6 +436,7 @@ typedef struct { > } Elf64_Chdr; > > #define ELFCOMPRESS_ZLIB 1 > +#define ELFCOMPRESS_ZSTD 2 > #define ELFCOMPRESS_LOOS 0x60000000 > #define ELFCOMPRESS_HIOS 0x6fffffff > #define ELFCOMPRESS_LOPROC 0x70000000 > -- > 2.37.1 Is this actually an adopted standard? It's not clear from the link above whether there's anything authoritative going on or a proposal that some people like. Rich