This is the mail archive of the crossgcc@sourceware.org mailing list for the crossgcc project.

See the CrossGCC FAQ for lots more information.


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

Fwd: Patch for arm-nonfpu


---------- Forwarded message ----------
From: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Date: Dec 5, 2006 8:04 PM
Subject: Patch for arm-nonfpu
To: dank@kegel.com


Hi


This patch is needed to use crosstol for arm-softfloat


Thanks for your work!!!!




without it:

+ make ARCH=arm oldconfig
 HOSTCC  scripts/basic/fixdep
 HOSTCC  scripts/basic/split-include
 HOSTCC  scripts/basic/docproc
 SHIPPED scripts/kconfig/zconf.tab.h
 HOSTCC  scripts/kconfig/conf.o
 HOSTCC  scripts/kconfig/mconf.o
scripts/kconfig/mconf.c:91: error: static declaration of
'current_menu' follows non-static declaration
scripts/kconfig/lkc.h:63: error: previous declaration of 'current_menu' was here
make[1]: *** [scripts/kconfig/mconf.o] Error 1
make: *** [oldconfig] Error 2

--
Ricardo Ribalda
http://www.ii.uam.es/~rribalda/




-- Ricardo Ribalda http://www.ii.uam.es/~rribalda/
--- linux-2.6.8/scripts/kconfig/mconf.c.old	2006-12-05 19:24:07.000000000 +0100
+++ linux-2.6.8/scripts/kconfig/mconf.c	2006-12-05 19:24:19.000000000 +0100
@@ -88,7 +88,7 @@
 static int indent;
 static struct termios ios_org;
 static int rows = 0, cols = 0;
-static struct menu *current_menu;
+struct menu *current_menu;
 static int child_count;
 static int do_resize;
 static int single_menu_mode;
--
For unsubscribe information see http://sourceware.org/lists.html#faq

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