[oe-commits] [openembedded-core] 38/39: nativesdk.bbclass: override TARGET_* flags

git at git.openembedded.org git at git.openembedded.org
Thu Apr 6 23:52:18 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit c612bcd4c7a93722699ecb2ed1c53489baa989e3
Author: Ming Liu <peter.x.liu at external.atlascopco.com>
AuthorDate: Thu Apr 6 14:09:43 2017 +0200

    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.
    
    Signed-off-by: Ming Liu <peter.x.liu at external.atlascopco.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/nativesdk.bbclass | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass
index a97f5a7..ebcfb2d 100644
--- a/meta/classes/nativesdk.bbclass
+++ b/meta/classes/nativesdk.bbclass
@@ -43,6 +43,10 @@ TARGET_PREFIX = "${SDK_PREFIX}"
 TARGET_CC_ARCH = "${SDK_CC_ARCH}"
 TARGET_LD_ARCH = "${SDK_LD_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 = ""
 EXTRA_OECONF_GCC_FLOAT = ""
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list