summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gcc/gcc-source.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-11-25 17:58:10 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-03 12:23:56 +0000
commitf82156640b1888d5a470db19bed9fc67f198f5ba (patch)
tree58c30a8f933bdea29fc481b2e0c04d3a6e531354 /meta/recipes-devtools/gcc/gcc-source.inc
parent893f9b21878ef4372331b0e8ab0ca246567830d4 (diff)
downloadpoky-f82156640b1888d5a470db19bed9fc67f198f5ba.tar.gz
gcc: Rework shared work
The current implementation of shared work for gcc is at best confusing. It relies on the fetch/unpack/patch tasks having exactly the same stamps and if this gets broken for some reason, its hard to figure out what the problem is. It also leads to complex code in bitbake. The benefits of shared work for gcc are clear but a better approach is needed. This patch adjusts things so that a single new recipe (gcc-source) provides the fetch/unpack/patch/preconfigure tasks, the rest of gcc simply depends on these tasks and have no fetch/unpack/patch tasks of their own. This means we should get the significant benefits (disk usage/performance) of the single source tree but in a way which has less potential for problems and is easier for people to understand. The cost is an extra recipe/some inc files which is probably a good tradeoff. (From OE-Core rev: ceaa0a448dc5ebddb4f7fb94fb8a503a1c0248c3) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-source.inc')
-rw-r--r--meta/recipes-devtools/gcc/gcc-source.inc34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-source.inc b/meta/recipes-devtools/gcc/gcc-source.inc
new file mode 100644
index 0000000000..968830aa35
--- /dev/null
+++ b/meta/recipes-devtools/gcc/gcc-source.inc
@@ -0,0 +1,34 @@
1deltask do_configure
2deltask do_compile
3deltask do_package
4deltask do_package_write_rpm
5deltask do_package_write_ipk
6deltask do_package_write_deb
7deltask do_install
8deltask do_populate_sysroot
9deltask do_populate_lic
10deltask do_package_qa
11deltask do_packagedata
12deltask do_rm_work
13
14WORKDIR = "${TMPDIR}/work-shared/gcc-${PV}-${PR}"
15SSTATE_SWSPEC = "sstate:gcc::${PV}:${PR}::${SSTATE_VERSION}:"
16
17STAMP = "${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}"
18STAMPCLEAN = "${STAMPS_DIR}/work-shared/gcc-[0-9]*-*"
19
20INHIBIT_DEFAULT_DEPS = "1"
21DEPENDS = ""
22
23python do_preconfigure () {
24 import subprocess
25 cmd = d.expand('PATH=${PATH} cd ${S} && gnu-configize')
26 subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
27 # See 0044-gengtypes.patch, we need to regenerate this file
28 bb.utils.remove(d.expand("${S}/gcc/gengtype-lex.c"))
29 cmd = d.expand("sed -i 's/BUILD_INFO=info/BUILD_INFO=/' ${S}/gcc/configure")
30 subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True)
31}
32addtask do_preconfigure after do_patch
33do_preconfigure[depends] += "gnu-config-native:do_populate_sysroot autoconf-native:do_populate_sysroot"
34