blob: 892b1dbf2f075dcc895ac222e27ad73e3d658731 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001DEPENDS = "virtual/${TARGET_PREFIX}binutils ${NATIVEDEPS}"
2PROVIDES = "virtual/${TARGET_PREFIX}gcc-initial"
3PACKAGES = ""
4
5INHIBIT_AUTOTOOLS_DEPS = "1"
6INHIBIT_DEFAULT_DEPS = "1"
7
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05008# We still need gnu-config-native
9DEPENDS_prepend = "gnu-config-native autoconf-native "
10
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011PN = "gcc-cross-initial-${TARGET_ARCH}"
12
13CROSS_TARGET_SYS_DIR_append = ".${PN}"
14
15# This is intended to be a -very- basic config
16# sysroot is needed in case we use libc-initial
17EXTRA_OECONF = "\
18 --with-newlib \
19 --without-headers \
20 --disable-shared \
21 --disable-threads \
22 --disable-multilib \
23 --disable-__cxa_atexit \
24 --enable-languages=c \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025 --program-prefix=${TARGET_PREFIX} \
26 --with-sysroot=/not/exist \
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027 --with-build-sysroot=${STAGING_DIR_TARGET} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028 ${EXTRA_OECONF_INITIAL} \
29 ${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '--with-ld=${STAGING_BINDIR_TOOLCHAIN}/${TARGET_PREFIX}ld.bfd', '', d)} \
30 ${EXTRA_OECONF_GCC_FLOAT} \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050031 ${@get_gcc_ppc_plt_settings(bb, d)} \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032"
33
34EXTRA_OECONF += "--with-native-system-header-dir=${SYSTEMHEADERS}"
35
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036do_compile () {
37 oe_runmake all-gcc configure-target-libgcc
Brad Bishopd7bf8c12018-02-25 22:55:05 -050038 (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 -050039}
Brad Bishop6e60e8b2018-02-01 10:27:11 -050040
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041do_install () {
Brad Bishopd7bf8c12018-02-25 22:55:05 -050042 ( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h-forbuild install-unwind_h)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 oe_runmake 'DESTDIR=${D}' install-gcc
44
45 # We don't really need this (here shares/ contains man/, info/, locale/).
46 rm -rf ${D}${datadir}/
47
48 # We use libiberty from binutils
49 find ${D}${exec_prefix}/lib -name libiberty.a | xargs rm -f
50 find ${D}${exec_prefix}/lib -name libiberty.h | xargs rm -f
51
52 # Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are
53 # found. These need to be relative paths so they work in different locations.
54 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
55 install -d $dest
56 useld=${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', '.bfd', '', d)}
57 ln -sf ${BINRELPATH}/${TARGET_PREFIX}ld${useld} ${dest}ld
58 for t in ar as nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do
59 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t $dest$t
60 done
61 # fixed limits.h infact includes the so called real limits.h
62 # which should come from libc but when we build libc-initial
63 # then bunch of configure tests include fixed limits.h which in turn
64 # includes real limits.h but this real limits.h is not staged yet
65 # so we overwirte the generated include-fixed/limits.h for gcc-cross-initial
66 # to get rid references to real limits.h
67 cp gcc/include-fixed/limits.h ${D}${gcclibdir}/${TARGET_SYS}/${BINV}/include/limits.h
Patrick Williamsc124f4f2015-09-15 14:41:29 -050068}
69#
70# Override the default sysroot staging copy since this won't look like a target system
71#
72sysroot_stage_all() {
73 sysroot_stage_dir ${D} ${SYSROOT_DESTDIR}
74 install -d ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${target_base_libdir}/
75 install -d ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${target_libdir}/
76 mv ${SYSROOT_DESTDIR}${target_base_libdir}/* ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${target_base_libdir}/ || true
77 mv ${SYSROOT_DESTDIR}${target_libdir}/* ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${target_libdir}/ || true
78}
79
Brad Bishop6e60e8b2018-02-01 10:27:11 -050080do_populate_sysroot[sstate-inputdirs] = "${SYSROOT_DESTDIR}/${STAGING_DIR_HOST}/"
81do_populate_sysroot[sstate-outputdirs] = "${COMPONENTS_DIR}/${PACKAGE_ARCH}/${PN}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050082
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050083inherit nopackages
Brad Bishop6e60e8b2018-02-01 10:27:11 -050084
85COMPILERINITIAL = "-initial"
86
87
88# We really only want this built by things that need it, not any recrdeptask
89deltask do_build