[OE-core] [PATCH] native.bbclass: Set CXXFLAGS from BUILD_CXXFLAGS not BUILD_CFLAGS

Phil Blundell pb at pbcl.net
Sat Jan 30 12:21:59 UTC 2016


Although BUILD_CXXFLAGS, by default, expands to the same thing as 
BUILD_CFLAGS there is no guarantee that this will be true in all 
cases.  When setting CXXFLAGS we should use the former.

Signed-off-by: Phil Blundell <pb at pbcl.net>
---
 meta/classes/native.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index aac2c1e..a3a5c8c 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -42,7 +42,7 @@ HOST_AS_ARCH = "${BUILD_AS_ARCH}"
 
 CPPFLAGS = "${BUILD_CPPFLAGS}"
 CFLAGS = "${BUILD_CFLAGS}"
-CXXFLAGS = "${BUILD_CFLAGS}"
+CXXFLAGS = "${BUILD_CXXFLAGS}"
 LDFLAGS = "${BUILD_LDFLAGS}"
 LDFLAGS_build-darwin = "-L${STAGING_LIBDIR_NATIVE} "
 
-- 
2.1.4






More information about the Openembedded-core mailing list