#!/bin/sh -x # Author : Benoit PAPILLAULT # Creation : 2005-01-13 # Goal : provide a simple and documented way to build a gcc cross compiler # configure version of binutils/glibc/gcc BINUTILS_VERSION=2.15 GLIBC_VERSION=2.3.4 GCC_VERSION=3.4.3 # TARGET is the architecture of the resulting binaries made by the cross # compiler #TARGET=powerpc-unknown-linux-gnu TARGET=x86_64-unknown-linux-gnu #TARGET=alphaev67-unknown-linux-gnu # PREFIX is where the binaries will be installed PREFIX="/opt/${TARGET}-gcc" # SYSROOT is the root of the host-system (it has the same files as the root # filesystem on the host machine). SYSROOT="/opt/${TARGET}-root" # set to yes if compiling for a bi-arch target (like x86_64) # and define TARGET_SUB and LIB_SUB BI_ARCH=yes TARGET_SUB=i686-pc-linux-gnu #============================================================================== # automatic setting of LIB and LIB_SUB according to BI_ARCH if [ "${BI_ARCH}" = "yes" ]; then LIB=lib64 LIB_SUB=lib else LIB=lib fi && echo "TARGET=${TARGET}" && HEADERDIR="${SYSROOT}/usr/include" && # We add the cross compiler binaries path ($PREFIX/bin) to $PATH export PATH="${PREFIX}/bin:${PATH}" && # Steps are : (inspired from crosstoll.sh from Dan Kegel, # see: http://kegel.com/crosstool/ and # http://kegel.com/crosstool/crosstool-0.28-rc37/crosstool.sh.txt) # 1. Install kernel headers in $SYSROOT/usr/include (final) # 2. Install (cross-)binutils $PREFIX/bin (final) # 3. Install glibc headers in $SYSROOT/usr/include (to bootstrap gcc) # 4. Install (cross-)gcc in $PREFIX/bin (to bootstrap glibc) # 5. Install glibc in $SYSROOT/usr (final) # 6. Install (cross-)gcc in $PREFIX/bin (final) # Step 1: we use the multi arch linux kernel headers in $HEADERDIR # This is needed to compile glibc echo "Installing kernel headers in ${HEADERDIR}" && rm -rf "${HEADERDIR}/asm"* "${HEADERDIR}/linux" && mkdir -p "${HEADERDIR}" && cp -a /usr/include/asm* /usr/include/linux "${HEADERDIR}" && echo "Done" || exit 1 # Step 2: install binutils # This provides the $PREFIX/bin/$TARGET-as and $PREFIX/bin/$TARGET-ld # They are needed when cross compiling # The default path used to search for libraries is determined here. It is # $SYSROOT (which is hardcoded in $PREFIX/bin/$TARGET-ld) with the value or # SEARCH_DIR appended (see $PREFIX/$TARGET/lib/ldscripts/*). In our case, we # have SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); # SEARCH_DIR("=/usr/lib"); (the = sign is replaced by SYSROOT). echo "Installing binutils in ${PREFIX}/bin" && rm -rf binutils-${BINUTILS_VERSION} binutils-build && tar jxf /var/spool/sorcery/binutils-${BINUTILS_VERSION}.tar.bz2 && mkdir binutils-build && cd binutils-build && ../binutils-${BINUTILS_VERSION}/configure --prefix="${PREFIX}" \ --target=${TARGET} \ --with-sysroot="${SYSROOT}" && make all && make install && cd .. && echo "Done" || exit 1 # Compute HOST from binutil's config.guess BUILD=`binutils-${BINUTILS_VERSION}/config.guess` echo "BUILD=${BUILD}" # Step 3: install glibc headers (bootstrap) echo "Installing glibc headers in ${HEADERDIR}" && rm -rf glibc-${GLIBC_VERSION} glibc-build && tar jxf /var/spool/sorcery/glibc-${GLIBC_VERSION}.tar.bz2 && (cd glibc-${GLIBC_VERSION} && tar jxf /var/spool/sorcery/glibc-linuxthreads-${GLIBC_VERSION}.tar.bz2) && mkdir glibc-build && cd glibc-build && # nptl/sysdeps/powerpc/tls.h:43:3: #error "TLS support is required." # We add --without-tls libc_cv_ppc_machine=yes \ ../glibc-${GLIBC_VERSION}/configure --prefix=/usr \ --build=${BUILD} --host=${TARGET} \ --with-headers="${HEADERDIR}" \ --without-cvs --disable-profile --disable-debug --without-gd \ --enable-add-ons=linuxthreads --with-tls --without-__thread \ --enable-kernel=2.4 && # prefix="" is needed to install headers in $PREFIX/include instead of # $PREFIX/usr/include (see HEADERDIR). We no longer use this. libc_cv_ppc_machine=yes \ make cross-compiling=yes install-headers install_root="${SYSROOT}" && # copy gnu/stubs.h features.h bits/stdio_lim.h cp ../glibc-${GLIBC_VERSION}/include/gnu/stubs.h "${HEADERDIR}/gnu" && cp ../glibc-${GLIBC_VERSION}/include/features.h "${HEADERDIR}" && cp bits/stdio_lim.h "${HEADERDIR}/bits" && cd .. && echo "Done" || exit 1 # Step 4 : Install gcc (bootstrap) # --enable-shared is needed to produce libgcc_eh.a # --enable-shared produces an error about crti.o missing # make -k => so we ignore errors # --disable-shared since libgcc_eh.a is not really needed by glibc # (see glibc-2.3.3-libeh-kludge.patch) # This is needed to cross compile glibc echo "Installing gcc (bootstrap) in ${PREFIX}/bin" && rm -rf gcc-${GCC_VERSION} gcc-build && tar jxf /var/spool/sorcery/gcc-core-${GCC_VERSION}.tar.bz2 && mkdir gcc-build && cd gcc-build && ../gcc-${GCC_VERSION}/configure --prefix="${PREFIX}" \ --target=${TARGET} \ --with-sysroot="${SYSROOT}" --with-headers="${HEADERDIR}" \ --disable-threads --disable-shared --enable-language=c && make && make install && cd .. && echo "Done" || exit 1 # Step 5 : Install native glibc (+ patch) # It's very important to specify --build in order for glibc to know # that we are cross compiling. Otherwise, it will fails with "cannot # compute sizeof". # This needs proper kernel headers (--with-headers) # This provides the crt1.o crti.o crtn.o needed to cross compile a program echo "Installing glibc in ${PREFIX}" && rm -rf glibc-${GLIBC_VERSION} glibc-build && tar jxf /var/spool/sorcery/glibc-${GLIBC_VERSION}.tar.bz2 && (cd glibc-${GLIBC_VERSION} && tar jxf /var/spool/sorcery/glibc-linuxthreads-${GLIBC_VERSION}.tar.bz2) && patch -p0 -g0 < configparms < configparms <