summaryrefslogtreecommitdiff
path: root/gcc/gcc_3.4.0.oe
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcc_3.4.0.oe')
-rw-r--r--gcc/gcc_3.4.0.oe7
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/gcc_3.4.0.oe b/gcc/gcc_3.4.0.oe
index 07688d9345..bf75c8bb10 100644
--- a/gcc/gcc_3.4.0.oe
+++ b/gcc/gcc_3.4.0.oe
@@ -153,7 +153,12 @@ EXTRA_OECONF_PATHS = "--with-local-prefix=${prefix}/local \
EXTRA_OECONF_DEP = ""
EXTRA_OECONF_uclibc = "--disable-__cxa_atexit"
EXTRA_OECONF_glibc = "--enable-__cxa_atexit"
-EXTRA_OECONF_append_ramses = " --with-float=soft "
+EXTRA_OECONF += "${@get_fpu_setting(oe, d)}"
+
+def get_fpu_setting(oe, d):
+ if oe.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]:
+ return "--with-float=soft"
+ return ""
python __anonymous () {
import oe, re