From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/387 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: New daily reports - nothing Date: Wed, 10 Aug 2011 10:25:00 -0400 Message-ID: <20110810142500.GX132@brightrain.aerifal.cx> References: <4E3A79B2.8090204@gmail.com> <4E3B331E.7050502@gmail.com> <4E3CC5AC.3070404@gmail.com> <4E3DFB5D.8040008@gmail.com> <20110807073224.GG132@brightrain.aerifal.cx> <4E3F10C7.4060601@gmail.com> <4E40A33F.7090804@gmail.com> <4E41E020.7020109@gmail.com> <20110810045933.GW132@brightrain.aerifal.cx> <4E427D34.4000905@gmail.com> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1312987086 28925 80.91.229.12 (10 Aug 2011 14:38:06 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 10 Aug 2011 14:38:06 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-388-gllmg-musl=m.gmane.org@lists.openwall.com Wed Aug 10 16:37:58 2011 Return-path: Envelope-to: gllmg-musl@lo.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by lo.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Qr9uw-0002NK-1K for gllmg-musl@lo.gmane.org; Wed, 10 Aug 2011 16:37:58 +0200 Original-Received: (qmail 25999 invoked by uid 550); 10 Aug 2011 14:37:57 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 25988 invoked from network); 10 Aug 2011 14:37:57 -0000 Content-Disposition: inline In-Reply-To: <4E427D34.4000905@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:387 Archived-At: On Wed, Aug 10, 2011 at 02:44:36PM +0200, Luka Marčetić wrote: > On 08/10/2011 06:59 AM, Rich Felker wrote: > >3. Cleaning up the build system and source to make sure it builds > >without modification (except perhaps CFLAGS tweaks) on fairly recent > >glibc and musl version. > > Wait. I've removed sqrtl dependency from alloc.c (I think I This kind of thing (not making tests depend on completely unrelated functionality) is the most important since it also relates to correctness (we don't want bugs in functionality X to impact the results of tests for functionality Y). > committed that, not sure), but does this mean you also want me to > comment out monetary.h header, and its function's test from buf.c? I hadn't thought too much about that. Ideally musl would have just had strfmon (or at least a stub for it) since a long time ago, but I never ran into anything that needed it. I'm not sure what the best thing for cluts to do at this stage is. In the long term, I'd like to have either a configure script or something in the build system whereby tests that can't build are automatically excluded (without excluding other related tests that could build) but for now it might be the best to have a simple #ifdef so this test could be disabled from the makefile settings. Rich