summaryrefslogtreecommitdiffstats
path: root/meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-03-31 10:32:08 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-03-31 10:32:08 +0100
commitcc0bd4bed23a697be5d35aee8d4ae4340e7a0226 (patch)
tree75b48fda3dd6624f58f157a14d9a58f868993da8 /meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch
parent4821286d0a97a82b3ad39572ec66da1892fd5cae (diff)
downloadpoky-cc0bd4bed23a697be5d35aee8d4ae4340e7a0226.tar.gz
gcc: Drop 3.4.4/3.4.6 and gcc-native as all are now unused
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch')
-rw-r--r--meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch b/meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch
deleted file mode 100644
index 85d108d9fb..0000000000
--- a/meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch
+++ /dev/null
@@ -1,32 +0,0 @@
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, _("BUILD ISOLATION FAILURE: /usr/include in INCLUDEPATH: %s\n Please fix the flags passed to the compiler to use the correct prefix.\n"), p->name);
20+ abort();
21+ } else if( strstr(p->name, "/sw/include") == p->name ) {
22+ fprintf(stderr, _("BUILD ISOLATION FAILURE: /sw/include in INCLUDEPATH: %s\n Please fix the flags passed to the compiler to use the correct prefix.\n"), p->name);
23+ abort();
24+ } else if( strstr(p->name, "/opt/include") == p->name ) {
25+ fprintf(stderr, _("BUILD ISOLATION FAILURE: /opt/include in INCLUDEPATH: %s\n Please fix the flags passed to the compiler to use the correct prefix.\n"), p->name);
26+ abort();
27+ }
28+ }
29+#endif
30 }
31
32 /* Exported function to handle include chain merging, duplicate