summaryrefslogtreecommitdiffstats
path: root/meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-25 15:34:03 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-25 15:34:03 +0000
commitb1c880f0de9bc36b3e077186ffc739b258d5a01d (patch)
treeabc6d3830ad3dda386de54a6a7f04df027758b1d /meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch
parent54b240ec36294e13e35661558dc60f3da03e7ac2 (diff)
downloadpoky-b1c880f0de9bc36b3e077186ffc739b258d5a01d.tar.gz
gcc: Add 3.4.6 gcc-native
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4342 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch')
-rw-r--r--meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch b/meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch
new file mode 100644
index 0000000000..069a965012
--- /dev/null
+++ b/meta/packages/gcc/gcc-3.4.6/zecke-no-host-includes.patch
@@ -0,0 +1,32 @@
1Index: gcc-3.4.4/gcc/c-incpath.c
2===================================================================
3--- gcc-3.4.4.orig/gcc/c-incpath.c 2004-05-31 12:37:47.000000000 +0200
4+++ gcc-3.4.4/gcc/c-incpath.c 2006-05-15 20:07:31.000000000 +0200
5@@ -328,6 +328,27 @@
6 else
7 heads[chain] = p;
8 tails[chain] = p;
9+
10+
11+#ifdef CROSS_COMPILE
12+ /* A common error when cross compiling is including
13+ host headers. This code below will try to fail fast
14+ for cross compiling. Currently we consider /usr/include,
15+ /opt/include and /sw/include as harmful. */
16+ {
17+ /* printf("Adding Path: %s\n", p->name ); */
18+ if( strstr(p->name, "/usr/include" ) == p->name ) {
19+ fprintf(stderr, _("CROSS COMPILE Badness: /usr/include in INCLUDEPATH: %s\n"), p->name);
20+ abort();
21+ } else if( strstr(p->name, "/sw/include") == p->name ) {
22+ fprintf(stderr, _("CROSS COMPILE Badness: /sw/include in INCLUDEPATH: %s\n"), p->name);
23+ abort();
24+ } else if( strstr(p->name, "/opt/include") == p->name ) {
25+ fprintf(stderr, _("CROSS COMPILE Badness: /opt/include in INCLUDEPATH: %s\n"), p->name);
26+ abort();
27+ }
28+ }
29+#endif
30 }
31
32 /* Exported function to handle include chain merging, duplicate