Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | inherit cross-canadian |
| 2 | |
| 3 | SUMMARY = "GNU cc and gcc C compilers (cross-canadian for ${TARGET_ARCH} target)" |
| 4 | PN = "gcc-cross-canadian-${TRANSLATED_TARGET_ARCH}" |
| 5 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 6 | DEPENDS = "virtual/${TARGET_PREFIX}gcc virtual/${HOST_PREFIX}gcc-crosssdk virtual/${HOST_PREFIX}binutils-crosssdk virtual/nativesdk-libc nativesdk-gettext flex-native virtual/libc" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | |
| 8 | GCCMULTILIB = "--enable-multilib" |
| 9 | |
| 10 | require gcc-configure-common.inc |
| 11 | |
| 12 | EXTRA_OECONF_PATHS = "\ |
| 13 | --with-gxx-include-dir=/not/exist${target_includedir}/c++/${BINV} \ |
| 14 | --with-build-time-tools=${STAGING_DIR_NATIVE}${prefix_native}/${TARGET_SYS}/bin \ |
| 15 | --with-sysroot=/not/exist \ |
| 16 | --with-build-sysroot=${STAGING_DIR_TARGET} \ |
| 17 | " |
| 18 | # We have to point gcc at a sysroot but we don't need to rebuild if this changes |
| 19 | # e.g. we switch between different machines with different tunes. |
| 20 | EXTRA_OECONF_PATHS[vardepsexclude] = "TUNE_PKGARCH" |
| 21 | TARGET_ARCH[vardepsexclude] = "TUNE_ARCH" |
| 22 | get_gcc_float_setting[vardepvalue] = "" |
| 23 | |
| 24 | # |
| 25 | # gcc-cross looks and finds these in ${exec_prefix} but we're not so lucky |
| 26 | # for the sdk. Hardcoding the paths ensures the build doesn't go canadian or worse. |
| 27 | # |
| 28 | export AR_FOR_TARGET = "${TARGET_PREFIX}ar" |
| 29 | export AS_FOR_TARGET = "${TARGET_PREFIX}as" |
| 30 | export DLLTOOL_FOR_TARGET = "${TARGET_PREFIX}dlltool" |
| 31 | export CC_FOR_TARGET = "${TARGET_PREFIX}gcc" |
| 32 | export CXX_FOR_TARGET = "${TARGET_PREFIX}g++" |
| 33 | export GCC_FOR_TARGET = "${TARGET_PREFIX}gcc" |
| 34 | export LD_FOR_TARGET = "${TARGET_PREFIX}ld" |
| 35 | export LIPO_FOR_TARGET = "${TARGET_PREFIX}lipo" |
| 36 | export NM_FOR_TARGET = "${TARGET_PREFIX}nm" |
| 37 | export OBJDUMP_FOR_TARGET = "${TARGET_PREFIX}objdump" |
| 38 | export RANLIB_FOR_TARGET = "${TARGET_PREFIX}ranlib" |
| 39 | export STRIP_FOR_TARGET = "${TARGET_PREFIX}strip" |
| 40 | export WINDRES_FOR_TARGET = "${TARGET_PREFIX}windres" |
| 41 | |
| 42 | # |
| 43 | # We need to override this and make sure the compiler can find staging |
| 44 | # |
| 45 | export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET}" |
| 46 | |
| 47 | do_configure () { |
| 48 | export CC_FOR_BUILD="${BUILD_CC}" |
| 49 | export CXX_FOR_BUILD="${BUILD_CXX}" |
| 50 | export CFLAGS_FOR_BUILD="${BUILD_CFLAGS}" |
| 51 | export CPPFLAGS_FOR_BUILD="${BUILD_CPPFLAGS}" |
| 52 | export CXXFLAGS_FOR_BUILD="${BUILD_CXXFLAGS}" |
| 53 | export LDFLAGS_FOR_BUILD="${BUILD_LDFLAGS}" |
| 54 | export CFLAGS_FOR_TARGET="${TARGET_CFLAGS}" |
| 55 | export CPPFLAGS_FOR_TARGET="${TARGET_CPPFLAGS}" |
| 56 | export CXXFLAGS_FOR_TARGET="${TARGET_CXXFLAGS}" |
| 57 | export LDFLAGS_FOR_TARGET="${TARGET_LDFLAGS}" |
| 58 | oe_runconf |
| 59 | } |
| 60 | |
| 61 | do_compile () { |
| 62 | oe_runmake all-host configure-target-libgcc |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 63 | (cd ${B}/${TARGET_SYS}/libgcc; oe_runmake enable-execute-stack.c unwind.h md-unwind-support.h sfp-machine.h gthr-default.h) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 64 | } |
| 65 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 66 | PACKAGES = "${PN}-dbg ${PN} ${PN}-doc" |
| 67 | |
| 68 | FILES_${PN} = "\ |
| 69 | ${exec_prefix}/bin/* \ |
| 70 | ${libexecdir}/gcc/${TARGET_SYS}/${BINV}/* \ |
| 71 | ${gcclibdir}/${TARGET_SYS}/${BINV}/*.o \ |
| 72 | ${gcclibdir}/${TARGET_SYS}/${BINV}/specs \ |
| 73 | ${gcclibdir}/${TARGET_SYS}/${BINV}/lib* \ |
| 74 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include \ |
| 75 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include-fixed \ |
| 76 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/include/ \ |
| 77 | ${gcclibdir}/${TARGET_SYS}/${BINV}/plugin/gtype.* \ |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 78 | ${libdir}/bfd-plugins/*.so \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 79 | ${includedir}/c++/${BINV} \ |
| 80 | ${prefix}/${TARGET_SYS}/bin/* \ |
| 81 | ${prefix}/${TARGET_SYS}/lib/* \ |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 82 | ${prefix}/${TARGET_SYS}${target_includedir}/* \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 83 | " |
| 84 | INSANE_SKIP_${PN} += "dev-so" |
| 85 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 86 | FILES_${PN}-doc = "\ |
| 87 | ${infodir} \ |
| 88 | ${mandir} \ |
| 89 | ${gcclibdir}/${TARGET_SYS}/${BINV}/include/README \ |
| 90 | " |
| 91 | |
| 92 | EXEEXT = "" |
| 93 | |
| 94 | # Compute how to get from libexecdir to bindir in python (easier than shell) |
| 95 | BINRELPATH = "${@os.path.relpath(d.expand("${bindir}"), d.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}"))}" |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 96 | # linker plugin path |
| 97 | LIBRELPATH = "${@os.path.relpath(d.expand("${libexecdir}/gcc/${TARGET_SYS}/${BINV}"), d.expand("${libdir}/bfd-plugins"))}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 98 | |
| 99 | do_install () { |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 100 | ( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h-forbuild install-unwind_h ) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 101 | oe_runmake 'DESTDIR=${D}' install-host |
| 102 | |
| 103 | # Cleanup some of the ${libdir}{,exec}/gcc stuff ... |
| 104 | rm -r ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/install-tools |
| 105 | rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools |
| 106 | rm -rf ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/finclude |
| 107 | |
| 108 | # We care about g++ not c++ |
| 109 | rm -f ${D}${bindir}/*c++ |
| 110 | |
| 111 | # We don't care about the gcc-<version> copies |
Andrew Geissler | 635e0e4 | 2020-08-21 15:58:33 -0500 | [diff] [blame] | 112 | rm -f ${D}${bindir}/*gcc-${BINV}* |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 113 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 114 | # Cleanup empty directories which are not shipped |
| 115 | # we use rmdir instead of 'rm -f' to ensure the non empty directories are not deleted |
| 116 | # ${D}${libdir}/../lib only seems to appear with SDKMACHINE=i686 |
| 117 | local empty_dirs="${D}${libdir}/../lib ${D}${prefix}/${TARGET_SYS}/lib ${D}${prefix}/${TARGET_SYS} ${D}${includedir}" |
| 118 | for i in $empty_dirs; do |
| 119 | [ -d $i ] && rmdir --ignore-fail-on-non-empty $i |
| 120 | done |
| 121 | |
| 122 | # Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are |
| 123 | # found. |
| 124 | dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/ |
| 125 | install -d $dest |
| 126 | suffix=${EXEEXT} |
| 127 | for t in ar as ld nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do |
| 128 | if [ "$t" = "g77" -o "$t" = "gfortran" ] && [ ! -e ${D}${bindir}/${TARGET_PREFIX}$t$suffix ]; then |
| 129 | continue |
| 130 | fi |
| 131 | |
| 132 | ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t$suffix $dest$t$suffix |
| 133 | done |
| 134 | t=real-ld |
| 135 | ln -sf ${BINRELPATH}/${TARGET_PREFIX}ld$suffix $dest$t$suffix |
| 136 | |
| 137 | # libquadmath headers need to be available in the gcc libexec dir |
| 138 | install -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ |
| 139 | cp ${S}/libquadmath/quadmath.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ |
| 140 | cp ${S}/libquadmath/quadmath_weak.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/ |
| 141 | |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 142 | # install LTO linker plugins where binutils tools can find it |
| 143 | install -d ${D}${libdir}/bfd-plugins |
| 144 | ln -sf ${LIBRELPATH}/liblto_plugin.so ${D}${libdir}/bfd-plugins/liblto_plugin.so |
| 145 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 146 | chown -R root:root ${D} |
Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 147 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 148 | cross_canadian_bindirlinks |
Andrew Geissler | c9f7865 | 2020-09-18 14:11:35 -0500 | [diff] [blame] | 149 | |
| 150 | for i in linux ${CANADIANEXTRAOS} |
| 151 | do |
| 152 | for v in ${CANADIANEXTRAVENDOR} |
| 153 | do |
| 154 | d=${D}${bindir}/../${TARGET_ARCH}$v-$i |
| 155 | install -d $d |
| 156 | for j in ${TARGET_PREFIX}gcc${EXEEXT} ${TARGET_PREFIX}g++${EXEEXT} |
| 157 | do |
| 158 | p=${TARGET_ARCH}$v-$i-`echo $j | sed -e s,${TARGET_PREFIX},,` |
| 159 | case $i in |
| 160 | *musl*) |
| 161 | rm -rf $d/$p |
| 162 | echo "#!/usr/bin/env sh" > $d/$p |
| 163 | echo "exec \`dirname \$0\`/../${TARGET_SYS}/$j -mmusl \$@" >> $d/$p |
| 164 | chmod 0755 $d/$p |
| 165 | ;; |
| 166 | *) |
| 167 | ;; |
| 168 | esac |
| 169 | done |
| 170 | done |
| 171 | done |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | ELFUTILS = "nativesdk-elfutils" |
| 175 | DEPENDS += "nativesdk-gmp nativesdk-mpfr nativesdk-libmpc ${ELFUTILS} nativesdk-zlib" |
| 176 | RDEPENDS_${PN} += "nativesdk-mpfr nativesdk-libmpc ${ELFUTILS}" |
| 177 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 178 | SYSTEMHEADERS = "${target_includedir}/" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 179 | SYSTEMLIBS = "${target_base_libdir}/" |
| 180 | SYSTEMLIBS1 = "${target_libdir}/" |
| 181 | |
| 182 | EXTRA_OECONF += "--enable-poison-system-directories" |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 183 | EXTRA_OECONF_remove_elf = "--with-sysroot=/not/exist" |
| 184 | EXTRA_OECONF_remove_eabi = "--with-sysroot=/not/exist" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 185 | EXTRA_OECONF_append_elf = " --without-headers --with-newlib" |
| 186 | EXTRA_OECONF_append_eabi = " --without-headers --with-newlib" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 187 | # gcc 4.7 needs -isystem |
| 188 | export ARCH_FLAGS_FOR_TARGET = "--sysroot=${STAGING_DIR_TARGET} -isystem=${target_includedir}" |