Philip Rakity writes:
authorEric Andersen <andersen@codepoet.org>
Sun, 23 Jan 2005 10:28:04 +0000 (10:28 -0000)
committerEric Andersen <andersen@codepoet.org>
Sun, 23 Jan 2005 10:28:04 +0000 (10:28 -0000)
Hi Eric,

I writing privately since I have not heard from Mike for 2 weeks about
a one line patch to the gcc Makefile.in to allow the extra gcc options
to be passed in.  The patch is below and without it -- gcc extra's like

 --with-cpu=xscale

do not work.

The patch is as follows:

toolchain/gcc/Makefile.in

index 2963ffbe3c880b085b53cbf9cccb836fd79fab8a..e1fb6fec38a77b4a50977d3ef1692874e6264a0f 100644 (file)
@@ -3,7 +3,9 @@ GCC_VERSION:=$(strip $(subst ",, $(BR2_GCC_VERSION)))
 GCC_USE_SJLJ_EXCEPTIONS:=$(strip $(subst ",, $(BR2_GCC_USE_SJLJ_EXCEPTIONS)))
 #"
 TARGET_OPTIMIZATION:=$(strip $(subst ",, $(BR2_TARGET_OPTIMIZATION)))
-#""
+#"
+EXTRA_GCC_CONFIG_OPTIONS:=$(strip $(subst ",, $(BR2_EXTRA_GCC_CONFIG_OPTIONS)))
+#"
 
 
 ifeq ($(BR2_SOFT_FLOAT),y)