diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-12 10:53:51 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-04-12 10:53:51 +0000 |
commit | 3b60d9aab39e3f2db60fd226d0fc205bedb2c95f (patch) | |
tree | 5634e82817cd581a5df5739ebf8dce3665e32188 | |
parent | d5b4fc337bea402006b689ebfcda3014ed9da906 (diff) | |
download | poky-3b60d9aab39e3f2db60fd226d0fc205bedb2c95f.tar.gz |
gcc: added gcc-ignore-cache patch from OE bugtracker #1951 to get gcc buildable on amd64
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1486 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/gcc/gcc-4.1.1/gcc-ignore-cache.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/packages/gcc/gcc-4.1.1/gcc-ignore-cache.patch b/meta/packages/gcc/gcc-4.1.1/gcc-ignore-cache.patch new file mode 100644 index 0000000000..396b4b2345 --- /dev/null +++ b/meta/packages/gcc/gcc-4.1.1/gcc-ignore-cache.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | --- /gcc/orig-configure 2007-03-11 21:50:28.000000000 +0200 | ||
2 | +++ /gcc/configure 2007-03-11 21:53:27.000000000 +0200 | ||
3 | @@ -12272,9 +12272,11 @@ | ||
4 | esac | ||
5 | saved_CFLAGS="${CFLAGS}" | ||
6 | CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \ | ||
7 | + CONFIG_SITE="" | ||
8 | ${realsrcdir}/configure \ | ||
9 | --enable-languages=${enable_languages-all} \ | ||
10 | - --target=$target_alias --host=$build_alias --build=$build_alias | ||
11 | + --target=$target_alias --host=$build_alias --build=$build_alias \ | ||
12 | + --cache-file=./tmp-cache | ||
13 | CFLAGS="${saved_CFLAGS}" | ||
14 | |||
15 | # We just finished tests for the build machine, so rename | ||