diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-common.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-common.inc | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-target.inc | 2 |
3 files changed, 4 insertions, 2 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): | |||
63 | retdict['package_extra_archs'] = localdata.getVar('PACKAGE_EXTRA_ARCHS', True) | 63 | retdict['package_extra_archs'] = localdata.getVar('PACKAGE_EXTRA_ARCHS', True) |
64 | return retdict | 64 | return retdict |
65 | 65 | ||
66 | get_tune_parameters[vardepsexclude] = "AVAILTUNES" | 66 | get_tune_parameters[vardepsexclude] = "AVAILTUNES TUNE_CCARGS" |
67 | 67 | ||
68 | DEBIANNAME_${MLPREFIX}libgcc = "libgcc1" | 68 | DEBIANNAME_${MLPREFIX}libgcc = "libgcc1" |
69 | 69 | ||
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index 3cb6ec8f2f..31e3cc4551 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -61,7 +61,7 @@ EXTRA_OECONF_append_libc-uclibc = " --enable-__cxa_atexit" | |||
61 | EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 61 | EXTRA_OECONF_append_mips64 = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
62 | EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" | 62 | EXTRA_OECONF_append_mips64el = " --with-abi=64 --with-arch-64=mips64 --with-tune-64=mips64" |
63 | 63 | ||
64 | EXTRA_OECONF_FPU = "${@get_gcc_fpu_setting(bb, d)}" | 64 | EXTRA_OECONF_FPU ??= "" |
65 | CPPFLAGS = "" | 65 | CPPFLAGS = "" |
66 | 66 | ||
67 | # powerpc needs this to comply with the ABI | 67 | # powerpc needs this to comply with the ABI |
diff --git a/meta/recipes-devtools/gcc/gcc-target.inc b/meta/recipes-devtools/gcc/gcc-target.inc index 45a16370ce..de906d6241 100644 --- a/meta/recipes-devtools/gcc/gcc-target.inc +++ b/meta/recipes-devtools/gcc/gcc-target.inc | |||
@@ -7,6 +7,8 @@ EXTRA_OECONF_PATHS = " \ | |||
7 | --with-native-system-header-dir=${STAGING_DIR_TARGET}${target_includedir} \ | 7 | --with-native-system-header-dir=${STAGING_DIR_TARGET}${target_includedir} \ |
8 | --with-gxx-include-dir=${includedir}/c++/" | 8 | --with-gxx-include-dir=${includedir}/c++/" |
9 | 9 | ||
10 | EXTRA_OECONF_FPU = "${@get_gcc_fpu_setting(bb, d)}" | ||
11 | |||
10 | PACKAGES = "\ | 12 | PACKAGES = "\ |
11 | ${PN} ${PN}-plugins ${PN}-symlinks \ | 13 | ${PN} ${PN}-plugins ${PN}-symlinks \ |
12 | g++ g++-symlinks \ | 14 | g++ g++-symlinks \ |