gcc-common.inc: In get_gcc_fpu_setting make sure we only do soft float for targets.
authorTom Rini <trini@embeddedalley.com>
Mon, 16 Feb 2009 07:22:43 +0000 (02:22 -0500)
committerTom Rini <trini@embeddedalley.com>
Mon, 16 Feb 2009 07:22:43 +0000 (02:22 -0500)
When we build canadian toolchains (ie mingw-gcc-cross) we run this function,
but we don't want it really it to so add a check on TARGET_OS=linux.
Fixes building for TARGET_FPU=soft mipsel for example.

packages/gcc/gcc-common.inc

index 73bc327..9e70af7 100644 (file)
@@ -7,8 +7,11 @@ inherit autotools gettext
 
 FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/gcc-${PV}"
 
+# When making a Canadian SDK, we use these files too to make the compiler
+# for building for the new host part.  So only obey TARGET_FPU for the
+# real target.
 def get_gcc_fpu_setting(bb, d):
-    if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ]:
+    if bb.data.getVar('TARGET_FPU', d, 1) in [ 'soft' ] and bb.data.getVar('TARGET_OS', d, 1) in [ 'linux' ]:
         return "--with-float=soft"
     return ""