From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10229 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general,gmane.comp.hardware.lowrisc.devel Subject: Re: [GSoC2016] Weekly Report of Porting musl to RISC-V Project #4 Date: Sun, 26 Jun 2016 20:57:51 -0400 Message-ID: <20160627005750.GG10893@brightrain.aerifal.cx> References: <20160618163014.GU22574@port70.net> <20160626161224.GD10893@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 X-Trace: ger.gmane.org 1467009129 1160 80.91.229.3 (27 Jun 2016 06:32:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 27 Jun 2016 06:32:09 +0000 (UTC) To: musl@lists.openwall.com, lowrisc-dev@lists.lowrisc.org Original-X-From: musl-return-10242-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jun 27 02:58:07 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 1bHKsJ-0006fa-Dg for gllmg-musl@m.gmane.org; Mon, 27 Jun 2016 02:58:07 +0200 Original-Received: (qmail 12099 invoked by uid 550); 27 Jun 2016 00:58:05 -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 12081 invoked from network); 27 Jun 2016 00:58:04 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:10229 gmane.comp.hardware.lowrisc.devel:407 On Sun, Jun 26, 2016 at 03:51:50PM -0700, Khem Raj wrote: > On Jun 26, 2016 9:12 AM, "Rich Felker" wrote: > > > > On Sat, Jun 18, 2016 at 06:30:17PM +0200, Szabolcs Nagy wrote: > > > * Masanori Ogino [2016-06-18 22:21:58 +0900]: > > > > This week, I have tried to run libc-test [1] on Spike with the > > > > musl-based toolchain, but not succeeded. I found a minor problem with > > > > recent cpp (I will report it to the maintainer of libc-test later) but > > > > > > you have to s/-E/-E -P/ in the makefile > > > > > > i was reluctant to do this upstream as it is a non-standard flag. > > Just pin minimum gcc version to 5 libc-test does not depend on gcc much less a particular gcc version. Ability to apply tests with different compilers is fairly important since, for some interfaces, a buggy compiler might transform how they're invoked in invalid ways that result in breakage, and these sorts of bugs are useful to be able to track down. Rich