summaryrefslogtreecommitdiffstats
path: root/meta-microblaze/recipes-devtools/gcc/gcc-cross.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-microblaze/recipes-devtools/gcc/gcc-cross.inc')
-rw-r--r--meta-microblaze/recipes-devtools/gcc/gcc-cross.inc156
1 files changed, 156 insertions, 0 deletions
diff --git a/meta-microblaze/recipes-devtools/gcc/gcc-cross.inc b/meta-microblaze/recipes-devtools/gcc/gcc-cross.inc
new file mode 100644
index 00000000..b8424bfc
--- /dev/null
+++ b/meta-microblaze/recipes-devtools/gcc/gcc-cross.inc
@@ -0,0 +1,156 @@
1inherit cross
2
3INHIBIT_DEFAULT_DEPS = "1"
4EXTRADEPENDS = ""
5DEPENDS = "virtual/${TARGET_PREFIX}binutils ${EXTRADEPENDS} ${NATIVEDEPS}"
6PROVIDES = "virtual/${TARGET_PREFIX}gcc virtual/${TARGET_PREFIX}g++"
7python () {
8 if d.getVar("TARGET_OS").startswith("linux"):
9 d.setVar("EXTRADEPENDS", "linux-libc-headers")
10}
11
12PN = "gcc-cross-${TARGET_ARCH}"
13
14# Ignore how TARGET_ARCH is computed.
15TARGET_ARCH[vardepvalue] = "${TARGET_ARCH}"
16
17require gcc-configure-common.inc
18
19# 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
24EXTRA_OECONF += "--enable-poison-system-directories"
25EXTRA_OECONF:append:sh4 = " \
26 --with-multilib-list= \
27 --enable-incomplete-targets \
28"
29
30EXTRA_OECONF += "\
31 --with-system-zlib \
32"
33
34EXTRA_OECONF:append:libc-baremetal = " --without-headers"
35EXTRA_OECONF:remove:libc-baremetal = "--enable-threads=posix"
36EXTRA_OECONF:remove:libc-newlib = "--enable-threads=posix"
37
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
46
47do_configure:prepend () {
48 install -d ${RECIPE_SYSROOT}${target_includedir}
49 touch ${RECIPE_SYSROOT}${target_includedir}/limits.h
50}
51
52do_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
64 # 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
78 oe_runmake all-host configure-target-libgcc
79 (cd ${B}/${TARGET_SYS}/libgcc; oe_runmake enable-execute-stack.c unwind.h md-unwind-support.h sfp-machine.h gthr-default.h)
80}
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}"))}"
86
87do_install () {
88 ( cd ${B}/${TARGET_SYS}/libgcc; oe_runmake 'DESTDIR=${D}' install-unwind_h-forbuild install-unwind_h )
89 oe_runmake 'DESTDIR=${D}' install-host
90
91 install -d ${D}${target_base_libdir}
92 install -d ${D}${target_libdir}
93
94 # Link gfortran to g77 to satisfy not-so-smart configure or hard coded g77
95 # gfortran is fully backwards compatible. This is a safe and practical solution.
96 if [ -n "${@d.getVar('FORTRAN')}" ]; then
97 ln -sf ${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_PREFIX}gfortran ${STAGING_DIR_NATIVE}${prefix_native}/bin/${TARGET_PREFIX}g77 || true
98 fortsymlinks="g77 gfortran"
99 fi
100
101 # Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are
102 # found. These need to be relative paths so they work in different locations.
103 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
104 install -d $dest
105 for t in ar as ld ld.bfd ld.gold nm objcopy objdump ranlib strip gcc cpp $fortsymlinks; do
106 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t $dest$t
107 ln -sf ${BINRELPATH}/${TARGET_PREFIX}$t ${dest}${TARGET_PREFIX}$t
108 done
109
110 # Remove things we don't need but keep share/java
111 for d in info man share/doc share/locale share/man share/info; do
112 rm -rf ${D}${STAGING_DIR_NATIVE}${prefix_native}/$d
113 done
114
115 # libquadmath headers need to be available in the gcc libexec dir
116 install -d ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
117 cp ${S}/libquadmath/quadmath.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
118 cp ${S}/libquadmath/quadmath_weak.h ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/include/
119
120 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
121}
122
123do_package[noexec] = "1"
124do_packagedata[noexec] = "1"
125do_package_write_ipk[noexec] = "1"
126do_package_write_rpm[noexec] = "1"
127do_package_write_deb[noexec] = "1"
128
129inherit chrpath
130
131python gcc_stash_builddir_fixrpaths() {
132 # rewrite rpaths, breaking hardlinks as required
133 process_dir("/", d.getVar("BUILDDIRSTASH"), d, break_hardlinks = True)
134}
135
136BUILDDIRSTASH = "${WORKDIR}/stashed-builddir/build"
137do_gcc_stash_builddir[dirs] = "${B}"
138do_gcc_stash_builddir[cleandirs] = "${BUILDDIRSTASH}"
139do_gcc_stash_builddir[postfuncs] += "gcc_stash_builddir_fixrpaths"
140do_gcc_stash_builddir () {
141 dest=${BUILDDIRSTASH}
142 hardlinkdir . $dest
143 # Makefile does move-if-change which can end up with 'timestamp' as file contents so break links to those files
144 rm $dest/gcc/include/*.h
145 cp gcc/include/*.h $dest/gcc/include/
146}
147addtask do_gcc_stash_builddir after do_compile before do_install
148SSTATETASKS += "do_gcc_stash_builddir"
149do_gcc_stash_builddir[sstate-inputdirs] = "${BUILDDIRSTASH}"
150do_gcc_stash_builddir[sstate-outputdirs] = "${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}"
151do_gcc_stash_builddir[sstate-fixmedir] = "${COMPONENTS_DIR}/${BUILD_ARCH}/gcc-stashed-builddir-${TARGET_SYS}"
152
153python do_gcc_stash_builddir_setscene () {
154 sstate_setscene(d)
155}
156addtask do_gcc_stash_builddir_setscene