This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [ECOS] JFFS2 on big-endian system


Complain when asked to compile jffs2 on ARM with any gcc 3.2 compiler.
If somebody finds that gcc 3.2.3 works, please let me know!

    Andrew

===================================================================
RCS file: /cvs/ecos/ecos/packages/fs/jffs2/current/ChangeLog,v
retrieving revision 1.20
diff -u -r1.20 ChangeLog
--- fs/jffs2/current//ChangeLog 21 Nov 2003 19:05:23 -0000      1.20
+++ fs/jffs2/current//ChangeLog 25 Nov 2003 16:36:14 -0000
@@ -1,3 +1,8 @@
+2003-11-25  Andrew Lunn  <andrew.lunn@ascom.ch>
+
+       * src/fs-ecos.c: ARM gcc 3.2.3 is also broken. Complain with any
+       ARM gcc 3.2 compiler.
+
 2003-11-21  Thomas Koeller  <thomas.koeller@baslerweb.com>
 
         * cdl/jffs2.cdl: Do not require zlib package if no
Index: fs/jffs2/current//src/fs-ecos.c
===================================================================
RCS file: /cvs/ecos/ecos/packages/fs/jffs2/current/src/fs-ecos.c,v
retrieving revision 1.14
diff -u -r1.14 fs-ecos.c
--- fs/jffs2/current//src/fs-ecos.c     20 Nov 2003 21:06:26 -0000      1.14
+++ fs/jffs2/current//src/fs-ecos.c     25 Nov 2003 16:36:19 -0000
@@ -28,8 +28,7 @@
 #include <cyg/io/config_keys.h>
 #include <cyg/io/flash.h>
 
-#if (__GNUC__ == 3) && (__GNUC_MINOR__ == 2) && (__GNUC_PATCHLEVEL__ == 1) && \
-    defined (__ARM_ARCH_4__)
+#if (__GNUC__ == 3) && (__GNUC_MINOR__ == 2) && 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]