From 6b278fbb02d818b54b5a9fa2716fc49e896b72a8 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 28 Jun 2012 12:19:53 -0700 Subject: gcc-4.6: Migrate recipes from OE-Core Remove linaro patches. If one needs to use linaro modified gcc they should use meta-linaro Signed-off-by: Khem Raj --- .../gcc/gcc-4.6/gcc-poison-dir-extend.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 toolchain-layer/recipes-devtools/gcc/gcc-4.6/gcc-poison-dir-extend.patch (limited to 'toolchain-layer/recipes-devtools/gcc/gcc-4.6/gcc-poison-dir-extend.patch') diff --git a/toolchain-layer/recipes-devtools/gcc/gcc-4.6/gcc-poison-dir-extend.patch b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/gcc-poison-dir-extend.patch new file mode 100644 index 0000000000..35170e2622 --- /dev/null +++ b/toolchain-layer/recipes-devtools/gcc/gcc-4.6/gcc-poison-dir-extend.patch @@ -0,0 +1,27 @@ +Upstream-Status: Pending + +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.6.0/gcc/incpath.c +=================================================================== +--- gcc-4.6.0.orig/gcc/incpath.c ++++ gcc-4.6.0/gcc/incpath.c +@@ -363,7 +363,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 v1.2.3-54-g00ecf