diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-27 01:22:10 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-30 16:39:06 +0100 |
commit | ecf2a8cecfe115feeb0737dc5797687b574caf74 (patch) | |
tree | ec35e85b78b494d3413caba6cc7f9c56621029bc /meta/recipes-devtools/gcc/gcc-configure-common.inc | |
parent | f07b7c0da1748afc35fbb2ead7ae10ec66c7c428 (diff) | |
download | poky-ecf2a8cecfe115feeb0737dc5797687b574caf74.tar.gz |
gcc: Drop ARCH_FLAGS_FOR_TARGET usage
As far as I can tell this variable is now completely unneeded. It would
only ever get used in target builds and these are now correctly done
in the target environment namespace, not any of our cross environments.
As such, CC and other variables contain the correct compilers and other
tune options and these are correctly picked up when building libgcc,
libstdc++ and others.
I tried to figure out where else these would make any sense and couldn't
find anything. Builds appear fine without them so lets drop the complexity
including the patch adding in this flag to gcc.
(From OE-Core rev: 5484596f4252e707ff791feedf143a72dbb613f6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-common.inc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 12482f81e3..3cb6ec8f2f 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -68,11 +68,6 @@ CPPFLAGS = "" | |||
68 | EXTRA_OECONF_append_powerpc = " --with-long-double-128" | 68 | EXTRA_OECONF_append_powerpc = " --with-long-double-128" |
69 | EXTRA_OECONF_append_powerpc64 = " --with-long-double-128" | 69 | EXTRA_OECONF_append_powerpc64 = " --with-long-double-128" |
70 | 70 | ||
71 | # Used by configure to define additional values for FLAGS_FOR_TARGET - | ||
72 | # passed to all the compilers. | ||
73 | ARCH_FLAGS_FOR_TARGET = "${TARGET_CC_ARCH}" | ||
74 | EXTRA_OEMAKE += "ARCH_FLAGS_FOR_TARGET='${ARCH_FLAGS_FOR_TARGET}'" | ||
75 | |||
76 | SYSTEMHEADERS = "${target_includedir}" | 71 | SYSTEMHEADERS = "${target_includedir}" |
77 | SYSTEMLIBS = "${target_base_libdir}/" | 72 | SYSTEMLIBS = "${target_base_libdir}/" |
78 | SYSTEMLIBS1 = "${target_libdir}/" | 73 | SYSTEMLIBS1 = "${target_libdir}/" |
@@ -129,7 +124,6 @@ do_configure () { | |||
129 | export CPPFLAGS_FOR_BUILD="${BUILD_CPPFLAGS}" | 124 | export CPPFLAGS_FOR_BUILD="${BUILD_CPPFLAGS}" |
130 | export CXXFLAGS_FOR_BUILD="${BUILD_CXXFLAGS}" | 125 | export CXXFLAGS_FOR_BUILD="${BUILD_CXXFLAGS}" |
131 | export LDFLAGS_FOR_BUILD="${BUILD_LDFLAGS}" | 126 | export LDFLAGS_FOR_BUILD="${BUILD_LDFLAGS}" |
132 | export ARCH_FLAGS_FOR_TARGET="${ARCH_FLAGS_FOR_TARGET}" | ||
133 | export CFLAGS_FOR_TARGET="${TARGET_CFLAGS}" | 127 | export CFLAGS_FOR_TARGET="${TARGET_CFLAGS}" |
134 | export CPPFLAGS_FOR_TARGET="${TARGET_CPPFLAGS}" | 128 | export CPPFLAGS_FOR_TARGET="${TARGET_CPPFLAGS}" |
135 | export CXXFLAGS_FOR_TARGET="${TARGET_CXXFLAGS}" | 129 | export CXXFLAGS_FOR_TARGET="${TARGET_CXXFLAGS}" |