From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/9186 Path: news.gmane.org!not-for-mail From: Natanael Copa Newsgroups: gmane.linux.lib.musl.general Subject: Re: Bits deduplication: current situation Date: Mon, 25 Jan 2016 09:08:03 +0100 Message-ID: <20160125090803.2db4a262@ncopa-desktop.alpinelinux.org> References: <20160125035925.GA2288@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1453709304 5732 80.91.229.3 (25 Jan 2016 08:08:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 25 Jan 2016 08:08:24 +0000 (UTC) Cc: musl@lists.openwall.com To: Rich Felker Original-X-From: musl-return-9199-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jan 25 09:08:24 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1aNcCF-0000wv-NS for gllmg-musl@m.gmane.org; Mon, 25 Jan 2016 09:08:23 +0100 Original-Received: (qmail 7912 invoked by uid 550); 25 Jan 2016 08:08:22 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 7892 invoked from network); 25 Jan 2016 08:08:21 -0000 In-Reply-To: <20160125035925.GA2288@brightrain.aerifal.cx> X-Mailer: Claws Mail 3.13.1 (GTK+ 2.24.28; x86_64-alpine-linux-musl) Xref: news.gmane.org gmane.linux.lib.musl.general:9186 Archived-At: On Sun, 24 Jan 2016 22:59:25 -0500 Rich Felker wrote: > I'm about to try starting the bits deduplication, but before getting > started, I took a quick survey of the current bits headers we have: ... > Ideas/requests/preferences/etc.? It would be nice to be able to build 32-bit boot loaders on 64 bit hosts with gcc -m32. Currently that does not work due to it picks up 64 bit inttypes. We have a patch for xen's hvmloader: http://git.alpinelinux.org/cgit/aports/tree/main/xen/musl-hvmloader-fix-stdint.patch http://git.alpinelinux.org/cgit/aports/tree/main/xen/stdint_local.h Introduced with this commit: http://git.alpinelinux.org/cgit/aports/commit/main/xen/musl-hvmloader-fix-stdint.patch?id=bcf7b52774f1b0a3e405a207c3c4a5342b951f40 This is for stdint.h but I think its related and I assume it affects limits.h too. -nc