summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-runtime_4.6.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-19 19:22:44 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-23 09:01:38 +0000
commit280e5fd212e48f1b32d3fe01df38b1918bf97006 (patch)
tree3f9d39d428b4b6bbec99d0a6737142d10e480ec2 /meta/recipes-devtools/gcc/gcc-runtime_4.6.bb
parent76c16c4fa8c956b6a248b8fb3662b8027e28bc00 (diff)
downloadpoky-280e5fd212e48f1b32d3fe01df38b1918bf97006.tar.gz
gcc: Ensure that the shared source directory shared the same sstate hashes
The fetch/unpack/patch/headerfix tasks are shared and hence their sstate hashes should also match. Sadly this is not the case since: a) gcc-runtime applies an additional patch b) The do_headerfix task was missing from libgcc c) The do_headerfix task is a shell task and hence depends on all exported variables which can vary between cross and target recipes. To fix this, the patch moves the patch to the common code, adds the headerfix task to a common include file and disabled shell dependencies on the do_headerfix task since its clear in this case we don't need thsoe dependencies since we just call sed. With this patch applied, all these recipes now share common sstate checksums. (From OE-Core rev: 2c4569801a710f34a695b8d2a0ee7fc127fb34e4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-runtime_4.6.bb')
-rw-r--r--meta/recipes-devtools/gcc/gcc-runtime_4.6.bb2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.6.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.6.bb
index 568b5afaa9..97468db29f 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime_4.6.bb
+++ b/meta/recipes-devtools/gcc/gcc-runtime_4.6.bb
@@ -2,8 +2,6 @@ require gcc-${PV}.inc
2require gcc-configure-runtime.inc 2require gcc-configure-runtime.inc
3require gcc-package-runtime.inc 3require gcc-package-runtime.inc
4 4
5SRC_URI_append = "file://fortran-cross-compile-hack.patch"
6
7ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_INCDIR}" 5ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_INCDIR}"
8 6
9EXTRA_OECONF += "--disable-libunwind-exceptions" 7EXTRA_OECONF += "--disable-libunwind-exceptions"