diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-04-09 18:56:59 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-26 14:48:48 +0100 |
commit | eee3658366e1ae9d3e429b3d3c968938d8d0f00e (patch) | |
tree | ddfcea4674b38e4c694f4fa7e4149441bbcd214e /meta/recipes-devtools/gcc/gcc-cross-intermediate.inc | |
parent | 7cf9f0597648c0bdaa080976d74acfbfc4c8443d (diff) | |
download | openembedded-core-eee3658366e1ae9d3e429b3d3c968938d8d0f00e.tar.gz openembedded-core-eee3658366e1ae9d3e429b3d3c968938d8d0f00e.tar.bz2 openembedded-core-eee3658366e1ae9d3e429b3d3c968938d8d0f00e.zip |
gcc-configure: Render --with-local-prefix harmless
this option by default points to /usr/local no matter
what so we cant let it sit on sidelines otherwise it
will access host machine's /usr/local which may not
be desired. So disable this option. This also helps in making
gcc's shared state more consistent
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-cross-intermediate.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-cross-intermediate.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc index c356576cd9..c940e549c5 100644 --- a/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc +++ b/meta/recipes-devtools/gcc/gcc-cross-intermediate.inc @@ -14,8 +14,7 @@ CROSS_TARGET_SYS_DIR_append = ".${PN}" # Glibc won't compile with gold, and building glibc is the whole point of # this recipe. So we select ld.bfd explicitly here if gold is the distro's # preferred linker. -EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \ - --enable-shared \ +EXTRA_OECONF = "--enable-shared \ --disable-multilib \ --disable-threads \ --enable-languages=c \ |