mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
These configure checks cause compiler errors with GCC 14.1, so they always fail. Backport fixes from upstream to solve this. (From OE-Core rev: fbb297b34566b9cf7416b5ffeb296f892b5543a0) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 921479032720707f4817e3398e516724bc48b33c) Signed-off-by: Steve Sakoman <steve@sakoman.com>
26 lines
1.0 KiB
Bash
26 lines
1.0 KiB
Bash
require bash.inc
|
|
|
|
# GPL-2.0-or-later (< 4.0), GPL-3.0-or-later (>= 4.0)
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/bash/${BP}.tar.gz;name=tarball \
|
|
file://mkbuiltins_have_stringize.patch \
|
|
file://build-tests.patch \
|
|
file://test-output.patch \
|
|
file://run-ptest \
|
|
file://run-bash-ptests \
|
|
file://fix-run-builtins.patch \
|
|
file://use_aclocal.patch \
|
|
file://0001-changes-to-SIGINT-handler-while-waiting-for-a-child-.patch \
|
|
file://fix-filesubst-errexit.patch \
|
|
file://0001-fix-c99.patch \
|
|
"
|
|
|
|
SRC_URI[tarball.sha256sum] = "c8e31bdc59b69aaffc5b36509905ba3e5cbb12747091d27b4b977f078560d5b8"
|
|
|
|
DEBUG_OPTIMIZATION:append:armv4 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
|
|
DEBUG_OPTIMIZATION:append:armv5 = " ${@bb.utils.contains('TUNE_CCARGS', '-mthumb', '-fomit-frame-pointer', '', d)}"
|
|
|
|
BBCLASSEXTEND = "nativesdk"
|