Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | deltask do_configure |
| 2 | deltask do_compile |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 3 | deltask do_install |
| 4 | deltask do_populate_sysroot |
| 5 | deltask do_populate_lic |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 6 | RM_WORK_EXCLUDE += "${PN}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 8 | inherit nopackages |
| 9 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 10 | PN = "gcc-source-${PV}" |
| 11 | WORKDIR = "${TMPDIR}/work-shared/gcc-${PV}-${PR}" |
| 12 | SSTATE_SWSPEC = "sstate:gcc::${PV}:${PR}::${SSTATE_VERSION}:" |
| 13 | |
| 14 | STAMP = "${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}" |
| 15 | STAMPCLEAN = "${STAMPS_DIR}/work-shared/gcc-${PV}-*" |
| 16 | |
| 17 | INHIBIT_DEFAULT_DEPS = "1" |
| 18 | DEPENDS = "" |
| 19 | PACKAGES = "" |
| 20 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 21 | |
| 22 | # This needs to be Python to avoid lots of shell variables becoming dependencies. |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | python do_preconfigure () { |
| 24 | import subprocess |
| 25 | cmd = d.expand('cd ${S} && PATH=${PATH} 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) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 31 | |
| 32 | # Easiest way to stop bad RPATHs getting into the library since we have a |
| 33 | # broken libtool here (breaks cross-canadian and target at least) |
| 34 | cmd = d.expand("sed -i -e 's/hardcode_into_libs=yes/hardcode_into_libs=no/' ${S}/libcc1/configure") |
| 35 | subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=True) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 36 | } |
| 37 | addtask do_preconfigure after do_patch |
| 38 | do_preconfigure[depends] += "gnu-config-native:do_populate_sysroot autoconf-native:do_populate_sysroot" |
| 39 | |