mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
fc023a69a2
OE-core previously carried patches to glibc that added optimized sqrt
implementations for various PowerPC chips. These were recently removed,
which now results in errors when compiling glibc with certian PowerPC
machine tunes:
checking sysdep dirs... configure: error: The 603e subspecies of powerpc is not supported.
Remove setting GLIBC_EXTRA_OECONF with parameters that are no longer
valid. Also remove a commented out setting of the variable that probably
isn't vaild anyway.
Fixes: 2511e937f445 ("glibc: Drop ppc sqrt optimisations")
(From OE-Core rev: 40f15066c24720aae36713c9856ffb4fae146a45)
Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
926 B
ObjectPascal
21 lines
926 B
ObjectPascal
DEFAULTTUNE ?= "ppce300c3"
|
|
|
|
require conf/machine/include/powerpc/arch-powerpc.inc
|
|
|
|
AVAILTUNES += "ppce300c3 ppce300c3-nf"
|
|
|
|
# hard-float
|
|
TUNEVALID[ppce300c3] = "Enable ppce300c3 specific processor optimizations"
|
|
TUNE_FEATURES:tune-ppce300c3 = "${TUNE_FEATURES:tune-powerpc} ppce300c3"
|
|
TUNE_PKGARCH:tune-ppce300c3 = "ppce300c3"
|
|
PACKAGE_EXTRA_ARCHS:tune-ppce300c3 = "${PACKAGE_EXTRA_ARCHS:tune-powerpc} ppce300c3"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ppce300c3', ' -mcpu=e300c3', '', d)}"
|
|
|
|
# soft-float
|
|
TUNEVALID[ppce300c3-nf] = "Enable ppce300c3 specific processor optimizations (no fpu)"
|
|
TUNE_FEATURES:tune-ppce300c3-nf = "${TUNE_FEATURES:tune-powerpc-nf} ppce300c3-nf"
|
|
TUNE_PKGARCH:tune-ppce300c3-nf = "ppce300c3-nf"
|
|
PACKAGE_EXTRA_ARCHS:tune-ppce300c3-nf = "${PACKAGE_EXTRA_ARCHS:tune-powerpc-nf} ppce300c3-nf"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ppce300c3-nf', ' -mcpu=e300c3', '', d)}"
|
|
|