diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 16:40:19 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 22:49:00 +0100 |
commit | ce1f3fd20d81545d6d5dfc68f86f9fddf8ac9bbf (patch) | |
tree | b525ad1d33dbfd7c4c6e37ea56d0d7ee5af9bb24 /meta/recipes-devtools/gcc/gcc-common.inc | |
parent | 74d8866814aec520822518cc4cb8a942f7069bf7 (diff) | |
download | openembedded-core-ce1f3fd20d81545d6d5dfc68f86f9fddf8ac9bbf.tar.gz openembedded-core-ce1f3fd20d81545d6d5dfc68f86f9fddf8ac9bbf.tar.bz2 openembedded-core-ce1f3fd20d81545d6d5dfc68f86f9fddf8ac9bbf.zip |
gcc-common: Only apply fpu settings to target gcc
Within the OE build environment, we supply the correct fpu settings. These
only need to be spelt out for the on-target gcc.
Doing this means the checksums for the core compiler don't depend on the fpu
settings. We exclude the compiler tunes for similar reasons, it doesn't need
to influence the compiler build.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-common.inc b/meta/recipes-devtools/gcc/gcc-common.inc index 0408e65d5f..e56e598b75 100644 --- a/meta/recipes-devtools/gcc/gcc-common.inc +++ b/meta/recipes-devtools/gcc/gcc-common.inc @@ -63,7 +63,7 @@ def get_tune_parameters(tune, d): retdict['package_extra_archs'] = localdata.getVar('PACKAGE_EXTRA_ARCHS', True) return retdict -get_tune_parameters[vardepsexclude] = "AVAILTUNES" +get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS" DEBIANNAME_${MLPREFIX}libgcc = "libgcc1" |