From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5468 invoked by alias); 16 Oct 2003 07:32:35 -0000 Mailing-List: contact ecos-discuss-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: ecos-discuss-owner@sources.redhat.com Received: (qmail 5430 invoked from network); 16 Oct 2003 07:32:35 -0000 Received: from unknown (HELO londo.lunn.ch) (80.238.139.98) by sources.redhat.com with SMTP; 16 Oct 2003 07:32:35 -0000 Received: from lunn by londo.lunn.ch with local (Exim 3.36 #1 (Debian)) id 1AA2cY-0008Rh-00; Thu, 16 Oct 2003 09:32:30 +0200 Date: Thu, 16 Oct 2003 07:32:00 -0000 To: ?yvind Harboe Cc: ecos-discuss@sources.redhat.com Message-ID: <20031016073230.GB32391@lunn.ch> Mail-Followup-To: ?yvind Harboe , ecos-discuss@sources.redhat.com References: <1066289013.5833.24.camel@famine> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066289013.5833.24.camel@famine> User-Agent: Mutt/1.5.4i From: Andrew Lunn Subject: Re: [ECOS] Stress testing JFFS2 X-SW-Source: 2003-10/txt/msg00285.txt.bz2 > - GCC bug-fix. (Now comitted to eCos CVS, I think). Err, are you sure? All i committed was a test to see if you are using a known broken compiler and if so, refuse to compile. Andrew Index: fs-ecos.c =================================================================== RCS file: /cvs/ecos/ecos/packages/fs/jffs2/current/src/fs-ecos.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- fs-ecos.c 23 Sep 2003 11:47:59 -0000 1.10 +++ fs-ecos.c 4 Oct 2003 17:54:26 -0000 1.11 @@ -28,6 +28,12 @@ #include #include +#if (__GNUC__ == 3) && (__GNUC_MINOR__ == 2) && (__GNUC_PATCHLEVEL__ == 1) && \ + defined (__ARM_ARCH_4__) +#error This compiler is known to be broken. Please see: +#error http://ecos.sourceware.org/ml/ecos-patches/2003-08/msg00006.html +#endif + //========================================================================== // Forward definitions -- Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos and search the list archive: http://sources.redhat.com/ml/ecos-discuss