diff options
author | Tom Rini <trini@embeddedalley.com> | 2009-02-16 02:22:43 -0500 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2009-02-16 02:22:43 -0500 |
commit | 05ae151bd506b343d7f5de8f0610221393eb55ea (patch) | |
tree | 33ec2d324eb5cb3da89cfef63e72a4b362b04a2e /packages/gcc | |
parent | 01aa3f5d36574e02b9007c80cae85e72440e7880 (diff) |
gcc-common.inc: In get_gcc_fpu_setting make sure we only do soft float for targets.
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.
Diffstat (limited to 'packages/gcc')
-rw-r--r-- | packages/gcc/gcc-common.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/gcc/gcc-common.inc b/packages/gcc/gcc-common.inc index 73bc327507..9e70af71a5 100644 --- a/packages/gcc/gcc-common.inc +++ b/packages/gcc/gcc-common.inc @@ -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 "" |