[oe-commits] [openembedded-core] 03/12: bitbake.conf: add definition for BUILDSDK_CXXFLAGS

git at git.openembedded.org git at git.openembedded.org
Wed Aug 30 10:21: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 073ca1cbd1b70d5b36618584a8c88cbba391a259
Author: Chang Rebecca Swee Fun <rebecca.swee.fun.chang at intel.com>
AuthorDate: Wed Aug 30 13:15:43 2017 +0800

    bitbake.conf: add definition for BUILDSDK_CXXFLAGS
    
    ${BUILDSDK_CXXFLAGS} was introduced since
    commit 55c83cb239df5faf5e2143fffca47f2f16931cb3
    cross.bbclass: override TARGET_* flags
    
    bitbake.conf has definitions for both ${BUILDSDK_CPPFLAGS} and
    ${BUILDSDK_CFLAGS} but there is none for ${BUILDSDK_CXXFLAGS}.
    This was a regression as in the past, CXXFLAGS is the same as
    CFLAGS in SDK environment.
    
    Adding definition for ${BUILDSDK_CXXFLAGS} will resolve CXXFLAGS
    being set wrongly in SDK environment.
    
    [YOCTO #11769]
    
    Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/conf/bitbake.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index d4ed894..8ce0834 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -546,6 +546,7 @@ export CFLAGS = "${TARGET_CFLAGS}"
 export TARGET_CFLAGS = "${TARGET_CPPFLAGS} ${SELECTED_OPTIMIZATION}"
 
 export BUILD_CXXFLAGS = "${BUILD_CFLAGS}"
+BUILDSDK_CXXFLAGS = "${BUILDSDK_CFLAGS}"
 export CXXFLAGS = "${TARGET_CXXFLAGS}"
 export TARGET_CXXFLAGS = "${TARGET_CFLAGS}"
 

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


More information about the Openembedded-commits mailing list