diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 15:41:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-01 22:49:00 +0100 |
commit | 74d8866814aec520822518cc4cb8a942f7069bf7 (patch) | |
tree | ade13fe32c251d08c937229b1a6f5727972a85a7 /meta/recipes-devtools | |
parent | aebb71afe54b266de39ec7e1caf84e6426aaafba (diff) | |
download | openembedded-core-74d8866814aec520822518cc4cb8a942f7069bf7.tar.gz openembedded-core-74d8866814aec520822518cc4cb8a942f7069bf7.tar.bz2 openembedded-core-74d8866814aec520822518cc4cb8a942f7069bf7.zip |
gcc-cross: Drop TARGET_CC_ARCH
Since we no longer build target libs within gcc-cross, we can drop the
TARGET_CC_ARCH flags and hence make it independent of tune.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc index ef88d3f49c..0bf29e34d3 100644 --- a/meta/recipes-devtools/gcc/gcc-cross.inc +++ b/meta/recipes-devtools/gcc/gcc-cross.inc @@ -37,7 +37,7 @@ do_compile () { export RANLIB_FOR_TARGET="${TARGET_SYS}-ranlib" export LD_FOR_TARGET="${TARGET_SYS}-ld" export NM_FOR_TARGET="${TARGET_SYS}-nm" - export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc ${TARGET_CC_ARCH}" + export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc" export CFLAGS_FOR_TARGET="${TARGET_CFLAGS}" export CPPFLAGS_FOR_TARGET="${TARGET_CPPFLAGS}" export CXXFLAGS_FOR_TARGET="${TARGET_CXXFLAGS}" |