[oe-commits] [openembedded-core] 01/04: gcc-cross: Clean up fixed-includes

git at git.openembedded.org git at git.openembedded.org
Fri Aug 30 16:09:03 UTC 2019


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 a171bad8aa0f01cec648f46c42e325b5439dce61
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Fri Aug 30 16:50:35 2019 +0100

    gcc-cross: Clean up fixed-includes
    
    We had interesting failures where building gcc-cross-powerpc with 5.0 kernel
    headers, then building eudev after moving to 5.2 headers failed.
    
    gcc-cross doesn't rebuild when linux-libc-headers changes due to its
    listing in SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS. This shouldn't matter but
    fixincludes as adding asm-generic/socket.h to its filtered list which
    was then replacing the real header with an older version. This mismatch
    lead to build failures.
    
    We trust the Linux kernel headers to be ANSI safe so lets just clear out
    any headers and trust the originals to be correct.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/gcc/gcc-cross.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/gcc/gcc-cross.inc b/meta/recipes-devtools/gcc/gcc-cross.inc
index 6222c2e..e417b89 100644
--- a/meta/recipes-devtools/gcc/gcc-cross.inc
+++ b/meta/recipes-devtools/gcc/gcc-cross.inc
@@ -196,6 +196,8 @@ do_install () {
 	# We use libiberty from binutils
 	find ${D}${exec_prefix}/lib -name libiberty.a | xargs rm -f
 	find ${D}${exec_prefix}/lib -name libiberty.h | xargs rm -f
+
+	find ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include-fixed -type f -not -name "README" -not -name limits.h -not -name syslimits.h | xargs rm -f
 }
 
 do_package[noexec] = "1"

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


More information about the Openembedded-commits mailing list