diff options
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.patch | 32 |
1 files changed, 32 insertions, 0 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 new file mode 100644 index 0000000000..069a965012 --- /dev/null +++ b/meta/packages/gcc/gcc-3.4.4/zecke-no-host-includes.patch | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | Index: 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 | ||
