mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
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 (From OE-Core rev: eee3658366e1ae9d3e429b3d3c968938d8d0f00e) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -38,6 +38,7 @@ EXTRA_OECONF = "${@['--enable-clocale=generic', ''][d.getVar('USE_NLS', True) !=
|
||||
--enable-symvers=gnu \
|
||||
--enable-libstdcxx-pch \
|
||||
--program-prefix=${TARGET_PREFIX} \
|
||||
--without-local-prefix \
|
||||
${OPTSPACE} \
|
||||
${EXTRA_OECONF_BASE} \
|
||||
${EXTRA_OECONF_FPU} \
|
||||
|
||||
@@ -8,7 +8,7 @@ EXTRA_OECONF += " --enable-poison-system-directories \
|
||||
|
||||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
|
||||
EXTRA_OECONF_PATHS = "--with-local-prefix=${STAGING_DIR_TARGET}${target_exec_prefix} \
|
||||
EXTRA_OECONF_PATHS = " \
|
||||
--with-gxx-include-dir=${STAGING_DIR_TARGET}${target_includedir}/c++ \
|
||||
--with-sysroot=${STAGING_DIR_TARGET} \
|
||||
--with-build-sysroot=${STAGING_DIR_TARGET}"
|
||||
|
||||
@@ -3,7 +3,6 @@ require gcc-configure-common.inc
|
||||
CXXFLAGS := "${@oe_filter_out('-fvisibility-inlines-hidden', '${CXXFLAGS}', d)}"
|
||||
|
||||
EXTRA_OECONF_PATHS = " \
|
||||
--with-local-prefix=${STAGING_DIR_TARGET}${prefix} \
|
||||
--with-gxx-include-dir=${includedir}/c++/ \
|
||||
--with-sysroot=${STAGING_DIR_TARGET} \
|
||||
--with-build-sysroot=${STAGING_DIR_TARGET}"
|
||||
|
||||
@@ -4,8 +4,7 @@ require gcc-configure-common.inc
|
||||
USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibc", "no", "", d )}'
|
||||
USE_NLS = '${@base_conditional( "TARGET_OS", "linux-uclibceabi", "no", "", d )}'
|
||||
|
||||
EXTRA_OECONF_PATHS = "--with-local-prefix=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}${target_exec_prefix} \
|
||||
--with-gxx-include-dir=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}${target_includedir}/c++ \
|
||||
EXTRA_OECONF_PATHS = "--with-gxx-include-dir=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}${target_includedir}/c++ \
|
||||
--with-build-time-tools=${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}/bin \
|
||||
--with-sysroot=${SDKPATH}/sysroots/${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS} \
|
||||
--with-build-sysroot=${STAGING_DIR_TARGET}"
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
require gcc-configure-common.inc
|
||||
|
||||
EXTRA_OECONF_PATHS = " \
|
||||
--with-local-prefix=${STAGING_DIR_TARGET}${prefix} \
|
||||
--with-gxx-include-dir=${includedir}/c++/"
|
||||
|
||||
@@ -9,8 +9,7 @@ CROSS_TARGET_SYS_DIR_append = ".${PN}"
|
||||
|
||||
# This is intended to be a -very- basic config
|
||||
# sysroot is needed in case we use libc-initial
|
||||
EXTRA_OECONF = "--with-local-prefix=${STAGING_DIR_TARGET}${target_prefix} \
|
||||
--with-newlib \
|
||||
EXTRA_OECONF = "--with-newlib \
|
||||
--without-headers \
|
||||
--disable-shared \
|
||||
--disable-threads \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
Reference in New Issue
Block a user