[oe-commits] [openembedded-core] 12/20: cross.bbclass: Remove usage of host flags for cross-compilation

git at git.openembedded.org git at git.openembedded.org
Sun Jan 7 17:12:13 UTC 2018


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

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

commit 39fcca60f64bc6afc57943881bec5641820d3d7d
Author: Nikolay Merinov <n.merinov at inango-systems.com>
AuthorDate: Sat Oct 7 00:00:39 2017 +0500

    cross.bbclass: Remove usage of host flags for cross-compilation
    
    BUILD_* flags can't be used as TARGET_* flags even for "cross" packages.
    
    gcc-cross buils leaks config.log's through "gcc-stashed-builddir" and
    TARGET_* flags to libgcc cross-build through "gcc/libgcc.mvars" file
    on "gcc-stashed-builddir". This means that if BUILD_CFLAGS contains
    host-specific flags like "-isystem/usr/include" libgcc build will
    fail "do_qa_configure" and "do_package_qa" checks.
    
    Remove host-related flags from TARGET_* flags for gcc-cross build.
    
    (From OE-Core rev: 6c52b2db3a7c07a7bf448ba2c9db89a7734e4b4b)
    
    Signed-off-by: Nikolay Merinov <n.merinov at inango-systems.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/cross.bbclass | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass
index 8757303..4feb01e 100644
--- a/meta/classes/cross.bbclass
+++ b/meta/classes/cross.bbclass
@@ -28,10 +28,10 @@ MULTIMACH_TARGET_SYS = "${BUILD_ARCH}${BUILD_VENDOR}-${BUILD_OS}"
 export PKG_CONFIG_DIR = "${exec_prefix}/lib/pkgconfig"
 export PKG_CONFIG_SYSROOT_DIR = ""
 
-TARGET_CPPFLAGS = "${BUILD_CPPFLAGS}"
-TARGET_CFLAGS = "${BUILD_CFLAGS}"
-TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}"
-TARGET_LDFLAGS = "${BUILD_LDFLAGS}"
+TARGET_CPPFLAGS = ""
+TARGET_CFLAGS = ""
+TARGET_CXXFLAGS = ""
+TARGET_LDFLAGS = ""
 
 CPPFLAGS = "${BUILD_CPPFLAGS}"
 CFLAGS = "${BUILD_CFLAGS}"

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


More information about the Openembedded-commits mailing list