blob: dca4036ab5f8ee63ba1dca580b3a8f60e0af76b5 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001inherit cross
2
3INHIBIT_DEFAULT_DEPS = "1"
4EXTRADEPENDS = ""
Brad Bishop19323692019-04-05 15:28:33 -04005DEPENDS = "virtual/${TARGET_PREFIX}binutils ${EXTRADEPENDS} ${NATIVEDEPS}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006PROVIDES = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
7python () {
Brad Bishop6e60e8b2018-02-01 10:27:11 -05008 if d.getVar("TARGET_OS").startswith("linux"):
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009 d.setVar("EXTRADEPENDS", "linux-libc-headers")
10}
11
12PN = "gcc-cross-${TARGET_ARCH}"
13
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014# Ignore how TARGET_ARCH is computed.
15TARGET_ARCH[vardepvalue] = "${TARGET_ARCH}"
16
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017require gcc-configure-common.inc
18
Patrick Williamsc0f7c042017-02-23 20:41:17 -060019# While we want the 'gnu' hash style, we explicitly set it to sysv here to
20# ensure that any recipe which doesn't obey our LDFLAGS (which also set it to
21# gnu) will hit a QA failure.
22LINKER_HASH_STYLE ?= "sysv"
23
Andrew Geissler95ac1b82021-03-31 14:34:31 -050024EXTRA_OECONF += "--enable-poison-system-directories=error"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025EXTRA_OECONF_append_sh4 = " \
26 --with-multilib-list= \
27 --enable-incomplete-targets \
28"
29
30EXTRA_OECONF += "\
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031 --with-system-zlib \
32"
33
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034EXTRA_OECONF_append_libc-baremetal = " --without-headers"
35EXTRA_OECONF_remove_libc-baremetal = "--enable-threads=posix"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080036EXTRA_OECONF_remove_libc-newlib = "--enable-threads=posix"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037
38EXTRA_OECONF_PATHS = "\
39 --with-gxx-include-dir=/not/exist${target_includedir}/c++/${BINV} \
40 --with-sysroot=/not/exist \
41 --with-build-sysroot=${STAGING_DIR_TARGET} \
42"
43
44ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_DIR_TARGET}${target_includedir}"
45
Brad Bishop19323692019-04-05 15:28:33 -040046
47do_configure_prepend () {
48 install -d ${RECIPE_SYSROOT}${target_includedir}
49 touch ${RECIPE_SYSROOT}${target_includedir}/limits.h
50}
51
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052do_compile () {
53 export CC="${BUILD_CC}"
54 export AR_FOR_TARGET="${TARGET_SYS}-ar"
55 export RANLIB_FOR_TARGET="${TARGET_SYS}-ranlib"
56 export LD_FOR_TARGET="${TARGET_SYS}-ld"
57 export NM_FOR_TARGET="${TARGET_SYS}-nm"
58 export CC_FOR_TARGET="${CCACHE} ${TARGET_SYS}-gcc"
59 export CFLAGS_FOR_TARGET="${TARGET_CFLAGS}"
60 export CPPFLAGS_FOR_TARGET="${TARGET_CPPFLAGS}"
61 export CXXFLAGS_FOR_TARGET="${TARGET_CXXFLAGS}"
62 export LDFLAGS_FOR_TARGET="${TARGET_LDFLAGS}"
63
Andrew Geissler82c905d2020-04-13 13:39:40 -050064 # Prevent native/host sysroot path from being used in configargs.h header,
65 # as it will be rewritten when used by other sysroots preventing support
66 # for gcc plugins
67 oe_runmake configure-gcc
68 sed -i 's@${STAGING_DIR_TARGET}@/host@g' ${B}/gcc/configargs.h
69 sed -i 's@${STAGING_DIR_HOST}@/host@g' ${B}/gcc/configargs.h
70
71 # Prevent sysroot/workdir paths from being used in checksum-options.
72 # checksum-options is used to generate a checksum which is embedded into
73 # the output binary.
74 oe_runmake TARGET-gcc=checksum-options all-gcc
75 sed -i 's@${DEBUG_PREFIX_MAP}@@g' ${B}/gcc/checksum-options
76 sed -i 's@${STAGING_DIR_HOST}@/host@g' ${B}/gcc/checksum-options
77
Patrick Williamsc124f4f2015-09-15 14:41:29 -050078 oe_runmake all-host configure-target-libgcc
Brad Bishopd7bf8c12018-02-25 22:55:05 -050079 (cd ${B}/${TARGET_SYS}/libgcc; oe_runmake enable-execute-stack.c unwind.h md-unwind-support.h sfp-machine.h gthr-default.h)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080}
81
82INHIBIT_PACKAGE_STRIP = "1"
83
84# Compute how to get from libexecdir to bindir in python (easier than shell)
85BINRELPATH = "${@os.path.relpath(d.expand("${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_SYS}"), d.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}"))}"
Andrew Geisslerc926e172021-05-07 16:11:35 -050086# linker plugin path
87LIBRELPATH = "${@os.path.relpath(d.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}"), d.expand("${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/bfd-plugins"))}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088
89do_install () {
Brad Bishopd7bf8c12018-02-25 22:55:05 -050090 ( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h-forbuild install-unwind_h )
Patrick Williamsc124f4f2015-09-15 14:41:29 -050091 oe_runmake 'DESTDIR=${D}' install-host
92
93 install -d ${D}${target_base_libdir}
94 install -d ${D}${target_libdir}
Brad Bishopd7bf8c12018-02-25 22:55:05 -050095
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096 # Link gfortran to g77 to satisfy not-so-smart configure or hard coded g77
Andrew Geisslerc926e172021-05-07 16:11:35 -050097 # gfortran is fully backwards compatible. This is a safe and practical solution.
Brad Bishopd7bf8c12018-02-25 22:55:05 -050098 if [ -n "${@d.getVar('FORTRAN')}" ]; then
99 ln -sf ${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_PREFIX}gfortran ${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_PREFIX}g77 || true
100 fortsymlinks="g77 gfortran"
101 fi
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500102
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103 # Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are
104 # found. These need to be relative paths so they work in different locations.
105 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
106 install -d $dest
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500107 for t in ar as ld ld.bfd ld.gold nm objcopy objdump ranlib strip gcc cpp $fortsymlinks; do
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500108 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t $dest$t
109 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t ${dest}${TARGET_PREFIX}$t
110 done
111
112 # Remove things we don't need but keep share/java
113 for d in info man share/doc share/locale share/man share/info; do
114 rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/$d
115 done
116
117 # libquadmath headers need to be available in the gcc libexec dir
118 install -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
119 cp ${S}/libquadmath/quadmath.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
120 cp ${S}/libquadmath/quadmath_weak.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
121
Brad Bishop79641f22019-09-10 07:20:22 -0400122 find ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include-fixed -type f -not -name "README" -not -name limits.h -not -name syslimits.h | xargs rm -f
Andrew Geisslerc926e172021-05-07 16:11:35 -0500123
124 # install LTO linker plugins where binutils tools can find it
125 install -d ${D}${libdir}/bfd-plugins
126 ln -sf ${LIBRELPATH}/liblto_plugin.so ${D}${libdir}/bfd-plugins/liblto_plugin.so
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500127}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500128
129do_package[noexec] = "1"
130do_packagedata[noexec] = "1"
131do_package_write_ipk[noexec] = "1"
132do_package_write_rpm[noexec] = "1"
133do_package_write_deb[noexec] = "1"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500134
Brad Bishopa34c0302019-09-23 22:34:48 -0400135inherit chrpath
136
137python gcc_stash_builddir_fixrpaths() {
138 # rewrite rpaths, breaking hardlinks as required
139 process_dir("/", d.getVar("BUILDDIRSTASH"), d, break_hardlinks = True)
140}
141
142BUILDDIRSTASH = "${WORKDIR}/stashed-builddir/build"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500143do_gcc_stash_builddir[dirs] = "${B}"
144do_gcc_stash_builddir[cleandirs] = "${BUILDDIRSTASH}"
Brad Bishopa34c0302019-09-23 22:34:48 -0400145do_gcc_stash_builddir[postfuncs] += "gcc_stash_builddir_fixrpaths"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500146do_gcc_stash_builddir () {
147 dest=${BUILDDIRSTASH}
148 hardlinkdir . $dest
Brad Bishop79641f22019-09-10 07:20:22 -0400149 # Makefile does move-if-change which can end up with 'timestamp' as file contents so break links to those files
150 rm $dest/gcc/include/*.h
151 cp gcc/include/*.h $dest/gcc/include/
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500152}
153addtask do_gcc_stash_builddir after do_compile before do_install
154SSTATETASKS += "do_gcc_stash_builddir"
155do_gcc_stash_builddir[sstate-inputdirs] = "${BUILDDIRSTASH}"
Brad Bishop19323692019-04-05 15:28:33 -0400156do_gcc_stash_builddir[sstate-outputdirs] = "${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}"
157do_gcc_stash_builddir[sstate-fixmedir] = "${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500158
159python do_gcc_stash_builddir_setscene () {
160 sstate_setscene(d)
161}
162addtask do_gcc_stash_builddir_setscene