mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
nativesdk.bbclass: override TARGET_* flags
Some TARGET_* flags are being exported in bitbake.conf currently, so they are impacting all the tasks of a nativesdk recipe even they are not in use at all. This can lead a lot of churn when the nativesdk sysroot are shared by machines while they have defined different TARGET_* flags. Fix it by overriding with BUILDSDK_* flags. (From OE-Core rev: 85b69a5ec9ba9ea9ebdcd8ac18e1e147ddb1ff33) Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -43,6 +43,10 @@ TARGET_PREFIX = "${SDK_PREFIX}"
|
|||||||
TARGET_CC_ARCH = "${SDK_CC_ARCH}"
|
TARGET_CC_ARCH = "${SDK_CC_ARCH}"
|
||||||
TARGET_LD_ARCH = "${SDK_LD_ARCH}"
|
TARGET_LD_ARCH = "${SDK_LD_ARCH}"
|
||||||
TARGET_AS_ARCH = "${SDK_AS_ARCH}"
|
TARGET_AS_ARCH = "${SDK_AS_ARCH}"
|
||||||
|
TARGET_CPPFLAGS = "${BUILDSDK_CPPFLAGS}"
|
||||||
|
TARGET_CFLAGS = "${BUILDSDK_CFLAGS}"
|
||||||
|
TARGET_CXXFLAGS = "${BUILDSDK_CXXFLAGS}"
|
||||||
|
TARGET_LDFLAGS = "${BUILDSDK_LDFLAGS}"
|
||||||
TARGET_FPU = ""
|
TARGET_FPU = ""
|
||||||
EXTRA_OECONF_GCC_FLOAT = ""
|
EXTRA_OECONF_GCC_FLOAT = ""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user