From ff0f815593c33f1a82ba4d1cbe41e6b987da1f47 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Fri, 23 Mar 2012 08:22:26 +0100 Subject: toolchain-layer: move binutils and gcc from meta-oe into here MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Acked-by: Martin Jansa Acked-by: Eric BĂ©nard Acked-by: Khem Raj Signed-off-by: Koen Kooi --- .../gcc/gcc-4.5/gcc-poison-dir-extend.patch | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch') diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch new file mode 100644 index 0000000000..862b102133 --- /dev/null +++ b/toolchain-layer/recipes-devtools/gcc/gcc-4.5/gcc-poison-dir-extend.patch @@ -0,0 +1,25 @@ +Add /sw/include and /opt/include based on the original +zecke-no-host-includes.patch patch. The original patch checked for +/usr/include, /sw/include and /opt/include and then triggered a failure and +aborted. + +Instead, we add the two missing items to the current scan. If the user +wants this to be a failure, they can add "-Werror=poison-system-directories". + +Signed-off-by: Mark Hatle + +Index: gcc-4_5-branch/gcc/incpath.c +=================================================================== +--- gcc-4_5-branch.orig/gcc/incpath.c ++++ gcc-4_5-branch/gcc/incpath.c +@@ -365,7 +365,9 @@ merge_include_chains (const char *sysroo + { + if ((!strncmp (p->name, "/usr/include", 12)) + || (!strncmp (p->name, "/usr/local/include", 18)) +- || (!strncmp (p->name, "/usr/X11R6/include", 18))) ++ || (!strncmp (p->name, "/usr/X11R6/include", 18)) ++ || (!strncmp (p->name, "/sw/include", 11)) ++ || (!strncmp (p->name, "/opt/include", 12))) + warning (OPT_Wpoison_system_directories, + "include location \"%s\" is unsafe for " + "cross-compilation", -- cgit 1.2.3-korg