mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
native/nativesdk: Stop overriding unprefixed *FLAGS variables
We're currently encouraging an "arms race" with the FLAGS variables since a recipe might want to set a specific flag for all variants but to do so, += won't work due to the assignment in the native/nativesdk class files. This means recipes are using append. Since the default variables are constructed out of TARGET_XXX variables and we redefine these, there is no need to re-define the un-prefixed variables. If we drop that, the += appends and similar work and recipes don't have to resort to append. Change the classes and cleanup a number of recipes to adapt to the change. This change will result in some flags appearing to some native/nativesdk variants but that is probably what was originally expected anyway. (From OE-Core rev: a157b2f9d93428ca21265cc860a3b58b3698b3aa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -36,7 +36,7 @@ UPSTREAM_CHECK_URI = "https://www.sourceware.org/pub/bzip2/"
|
||||
|
||||
PACKAGES =+ "libbz2"
|
||||
|
||||
CFLAGS:append = " -fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64"
|
||||
CFLAGS += "-fPIC -fpic -Winline -fno-strength-reduce -D_FILE_OFFSET_BITS=64"
|
||||
|
||||
inherit autotools update-alternatives ptest relative_symlinks
|
||||
|
||||
|
||||
@@ -39,8 +39,8 @@ inherit autotools-brokensep pkgconfig
|
||||
# SORT_NONE in linker script which isn't supported by gold:
|
||||
# https://sourceware.org/bugzilla/show_bug.cgi?id=18097
|
||||
# https://github.com/linux-test-project/ltp/commit/3fce2064b54843218d085aae326c8f7ecf3a8c41#diff-39268f0855c634ca48c8993fcd2c95b12a65b79e8d9fa5ccd6b0f5a8785c0dd6R36
|
||||
LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', ' -fuse-ld=bfd', '', d)}"
|
||||
LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-lld', ' -fuse-ld=bfd', '', d)}"
|
||||
LDFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '-fuse-ld=bfd', '', d)}"
|
||||
LDFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-lld', '-fuse-ld=bfd', '', d)}"
|
||||
|
||||
# After 0002-kvm-use-LD-instead-of-hardcoding-ld.patch
|
||||
# https://github.com/linux-test-project/ltp/commit/f94e0ef3b7280f886384703ef9019aaf2f2dfebb
|
||||
|
||||
@@ -37,7 +37,7 @@ EXTRA_OECONF = "--includedir=${includedir}/security \
|
||||
--disable-doc \
|
||||
--disable-prelude"
|
||||
|
||||
CFLAGS:append = " -fPIC "
|
||||
CFLAGS += "-fPIC "
|
||||
|
||||
S = "${WORKDIR}/Linux-PAM-${PV}"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user