summaryrefslogtreecommitdiff
path: root/toolchain/gcc/Makefile.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-23 10:28:04 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-23 10:28:04 +0000
commit1a2048464b3f18360b396fe070500c07780e5b74 (patch)
treefd5afef63fae8d3d9645db39202017f1857dce4d /toolchain/gcc/Makefile.in
parentc9faab9104dce3c57da973f6b6ba39988185d6d1 (diff)
Philip Rakity writes:
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:
Diffstat (limited to 'toolchain/gcc/Makefile.in')
-rw-r--r--toolchain/gcc/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile.in b/toolchain/gcc/Makefile.in
index 2963ffbe3..e1fb6fec3 100644
--- a/toolchain/gcc/Makefile.in
+++ b/toolchain/gcc/Makefile.in
@@ -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)