scripts/buildToolchain.sh
changeset 63 89b41dbffe8d
parent 62 651912c5477c
child 64 7dab8d1a2426
     1.1 --- a/scripts/buildToolchain.sh	Sun May 06 21:47:29 2007 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,133 +0,0 @@
     1.4 -# This scripts calls each component's build script.
     1.5 -# Copyright 2007 Yann E. MORIN
     1.6 -# Licensed under the GPL v2. See COPYING in the root of this package
     1.7 -
     1.8 -# Parse all build files to have the needed functions.
     1.9 -. "${CT_TOP_DIR}/scripts/build/kernel_${CT_KERNEL}.sh"
    1.10 -. "${CT_TOP_DIR}/scripts/build/binutils.sh"
    1.11 -. "${CT_TOP_DIR}/scripts/build/libc_libfloat.sh"
    1.12 -. "${CT_TOP_DIR}/scripts/build/libc_${CT_LIBC}.sh"
    1.13 -. "${CT_TOP_DIR}/scripts/build/cc_core_${CT_CC_CORE}.sh"
    1.14 -. "${CT_TOP_DIR}/scripts/build/cc_${CT_CC}.sh"
    1.15 -
    1.16 -# Arrange paths depending on wether we use sys-root or not.
    1.17 -if [ "${CT_USE_SYSROOT}" = "y" ]; then
    1.18 -    CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}/sys-root"
    1.19 -    CT_HEADERS_DIR="${CT_SYSROOT_DIR}/usr/include"
    1.20 -    BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
    1.21 -    CC_CORE_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
    1.22 -    CC_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
    1.23 -    LIBC_SYSROOT_ARG=""
    1.24 -    # glibc's prefix must be exactly /usr, else --with-sysroot'd gcc will get
    1.25 -    # confused when $sysroot/usr/include is not present.
    1.26 -    # Note: --prefix=/usr is magic!
    1.27 -    # See http://www.gnu.org/software/libc/FAQ.html#s-2.2
    1.28 -else
    1.29 -    # plain old way. All libraries in prefix/target/lib
    1.30 -    CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}"
    1.31 -    CT_HEADERS_DIR="${CT_SYSROOT_DIR}/include"
    1.32 -    # hack!  Always use --with-sysroot for binutils.
    1.33 -    # binutils 2.14 and later obey it, older binutils ignore it.
    1.34 -    # Lets you build a working 32->64 bit cross gcc
    1.35 -    BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
    1.36 -    # Use --with-headers, else final gcc will define disable_glibc while
    1.37 -    # building libgcc, and you'll have no profiling
    1.38 -    CC_CORE_SYSROOT_ARG="--without-headers"
    1.39 -    CC_SYSROOT_ARG="--with-headers=${CT_HEADERS_DIR}"
    1.40 -    LIBC_SYSROOT_ARG="prefix="
    1.41 -fi
    1.42 -
    1.43 -# Prepare the 'lib' directories in sysroot, else the ../lib64 hack used by
    1.44 -# 32 -> 64 bit crosscompilers won't work, and build of final gcc will fail with
    1.45 -#  "ld: cannot open crti.o: No such file or directory"
    1.46 -mkdir -p "${CT_SYSROOT_DIR}/lib"
    1.47 -mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
    1.48 -
    1.49 -# Canadian-cross are really picky on the way they are built. Tweak the values.
    1.50 -if [ "${CT_CANADIAN}" = "y" ]; then
    1.51 -    # Arrange so that gcc never, ever think that build system == host system
    1.52 -    CT_CANADIAN_OPT="--build=`echo \"${CT_BUILD}\" |sed -r -e 's/-/-build_/'`"
    1.53 -    # We shall have a compiler for this target!
    1.54 -    # Do test here...
    1.55 -else
    1.56 -    CT_HOST="${CT_BUILD}"
    1.57 -    CT_CANADIAN_OPT=
    1.58 -    # Add the target toolchain in the path so that we can build the C library
    1.59 -    export PATH="${CT_PREFIX_DIR}/bin:${CT_CC_CORE_PREFIX_DIR}/bin:${PATH}"
    1.60 -fi
    1.61 -
    1.62 -# Modify GCC_HOST to never be equal to $BUILD or $TARGET
    1.63 -# This strange operation causes gcc to always generate a cross-compiler
    1.64 -# even if the build machine is the same kind as the host.
    1.65 -# This is why CC has to be set when doing a canadian cross; you can't find a
    1.66 -# host compiler by appending -gcc to our whacky $GCC_HOST
    1.67 -# Kludge: it is reported that the above causes canadian crosses with cygwin
    1.68 -# hosts to fail, so avoid it just in that one case.  It would be cleaner to
    1.69 -# just move this into the non-canadian case above, but I'm afraid that might
    1.70 -# cause some configure script somewhere to decide that since build==host, they
    1.71 -# could run host binaries.
    1.72 -# (Copied almost as-is from original crosstool):
    1.73 -case "${CT_KERNEL},${CT_CANADIAN}" in
    1.74 -    cygwin,y) ;;
    1.75 -    *)        CT_HOST="`echo \"${CT_HOST}\" |sed -r -e 's/-/-host_/;'`";;
    1.76 -esac
    1.77 -
    1.78 -# Ah! Recent versions of binutils need some of the build and/or host system
    1.79 -# (read CT_BUILD and CT_HOST) tools to be accessible (ar is but an example).
    1.80 -# Do that:
    1.81 -CT_DoLog EXTRA "Making build system tools available"
    1.82 -mkdir -p "${CT_PREFIX_DIR}/bin"
    1.83 -for tool in ar; do
    1.84 -    ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_BUILD}-${tool}"
    1.85 -    ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_HOST}-${tool}"
    1.86 -done
    1.87 -
    1.88 -# Ha. cygwin host have an .exe suffix (extension) for executables.
    1.89 -[ "${CT_KERNEL}" = "cygwin" ] && EXEEXT=".exe" || EXEEXT=""
    1.90 -
    1.91 -# Transform the ARCH into a kernel-understandable ARCH
    1.92 -case "${CT_ARCH}" in
    1.93 -    x86) CT_KERNEL_ARCH=i386;;
    1.94 -    ppc) CT_KERNEL_ARCH=powerpc;;
    1.95 -    *)   CT_KERNEL_ARCH="${CT_ARCH}";;
    1.96 -esac
    1.97 -
    1.98 -# Build up the TARGET_CFLAGS from user-provided options
    1.99 -tmp_target_CFLAGS=
   1.100 -[ -n "${CT_ARCH_CPU}" ]  && tmp_target_CFLAGS="${tmp_target_CFLAGS} -mcpu=${CT_ARCH_CPU}"
   1.101 -[ -n "${CT_ARCH_TUNE}" ] && tmp_target_CFLAGS="${tmp_target_CFLAGS} -mtune=${CT_ARCH_TUNE}"
   1.102 -[ -n "${CT_ARCH_ARCH}" ] && tmp_target_CFLAGS="${tmp_target_CFLAGS} -march=${CT_ARCH_ARCH}"
   1.103 -[ -n "${CT_ARCH_FPU}" ]  && tmp_target_CFLAGS="${tmp_target_CFLAGS} -mfpu=${CT_ARCH_FPU}"
   1.104 -# Override with user-specified CFLAGS
   1.105 -CT_TARGET_CFLAGS="${tmp_target_CFLAGS} ${CT_TARGET_CFLAGS}"
   1.106 -
   1.107 -# Help gcc
   1.108 -CT_CFLAGS_FOR_HOST=
   1.109 -[ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST="${CT_CFLAGS_FOR_HOST} -pipe"
   1.110 -
   1.111 -# And help make go faster
   1.112 -PARALLELMFLAGS=
   1.113 -[ ${CT_PARALLEL_JOBS} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -j${CT_PARALLEL_JOBS}"
   1.114 -[ ${CT_LOAD} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -l${CT_LOAD}"
   1.115 -
   1.116 -CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
   1.117 -CT_DoLog EXTRA "Building a toolchain for:"
   1.118 -CT_DoLog EXTRA "  build  = ${CT_BUILD}"
   1.119 -CT_DoLog EXTRA "  host   = ${CT_HOST}"
   1.120 -CT_DoLog EXTRA "  target = ${CT_TARGET}"
   1.121 -set |egrep '^CT_.+=' |sort |CT_DoLog DEBUG
   1.122 -CT_EndStep
   1.123 -
   1.124 -# Now for the job by itself.
   1.125 -# Check the C library config ASAP, before the user gets bored, and is
   1.126 -# gone having his/her coffee
   1.127 -do_libc_check_config
   1.128 -do_kernel_check_config
   1.129 -do_kernel_headers
   1.130 -do_binutils
   1.131 -do_libc_headers
   1.132 -do_cc_core
   1.133 -do_libfloat
   1.134 -do_libc
   1.135 -do_cc
   1.136 -do_libc_finish