scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 08 12:54:06 2007 +0000 (2007-05-08)
changeset 76 5f84983926e9
parent 64 7dab8d1a2426
child 78 c3868084d81a
permissions -rwxr-xr-x
Print the elapsed time alongside with the progress bar, such as below:
[02:27] \
yann@1
     1
#!/bin/bash
yann@1
     2
# Copyright 2007 Yann E. MORIN
yann@1
     3
# Licensed under the GPL v2. See COPYING in the root of this package.
yann@1
     4
yann@1
     5
# This is the main entry point to crosstool
yann@1
     6
# This will:
yann@1
     7
#   - download, extract and patch the toolchain components
yann@1
     8
#   - build and install each components in turn
yann@1
     9
#   - and eventually test the resulting toolchain
yann@1
    10
yann@1
    11
# What this file does is prepare the environment, based upon the user-choosen
yann@1
    12
# options. It also checks the existing environment for un-friendly variables,
yann@1
    13
# and checks for needed tools. It eventually calls the main build script.
yann@1
    14
yann@1
    15
# User must set CT_TOP_DIR in is environment!
yann@1
    16
# Once we can build out-of-tree, then this will have to go.
yann@1
    17
if [ -z "${CT_TOP_DIR}" -o ! -d "${CT_TOP_DIR}" ]; then
yann@1
    18
    # We don't have the functions right now, because we don't have CT_TOP_DIR.
yann@1
    19
    # Do the print stuff by hand:
yann@1
    20
    echo "CT_TOP_DIR not set. You must set CT_TOP_DIR to the top directory where crosstool is installed."
yann@1
    21
    exit 1
yann@1
    22
fi
yann@1
    23
yann@1
    24
# Parse the common functions
yann@1
    25
. "${CT_TOP_DIR}/scripts/functions"
yann@1
    26
yann@1
    27
CT_STAR_DATE=`CT_DoDate +%s%N`
yann@1
    28
CT_STAR_DATE_HUMAN=`CT_DoDate +%Y%m%d.%H%M%S`
yann@1
    29
yann@1
    30
# Log to a temporary file until we have built our environment
yann@63
    31
CT_ACTUAL_LOG_FILE="${CT_TOP_DIR}/$$.log"
yann@1
    32
yann@1
    33
# CT_TOP_DIR should be an absolute path.
yann@1
    34
CT_TOP_DIR="`CT_MakeAbsolutePath \"${CT_TOP_DIR}\"`"
yann@1
    35
yann@1
    36
# Parse the configuration file
yann@1
    37
CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
yann@1
    38
. "${CT_TOP_DIR}/.config"
yann@1
    39
yann@1
    40
# The progress bar indicator is asked for
yann@1
    41
if [ "${CT_LOG_PROGRESS_BAR}" = "y" ]; then
yann@76
    42
    _CT_PROG_BAR_DATE() {
yann@76
    43
        local str=`CT_DoDate +%s`
yann@76
    44
        local elapsed=$((str-(CT_STAR_DATE/(1000*1000*1000))))
yann@76
    45
        printf "[%02d:%02d]" $((elapsed/60)) $((elapsed%60))
yann@76
    46
    }
yann@1
    47
    _CT_PROG_BAR() {
yann@1
    48
        echo -en "\r"
yann@76
    49
        [ $((cpt/10)) -eq 0 ] && echo -en "`_CT_PROG_BAR_DATE` /"
yann@76
    50
        [ $((cpt/10)) -eq 1 ] && echo -en "`_CT_PROG_BAR_DATE` -"
yann@76
    51
        [ $((cpt/10)) -eq 2 ] && echo -en "`_CT_PROG_BAR_DATE` \\"
yann@76
    52
        [ $((cpt/10)) -eq 3 ] && echo -en "`_CT_PROG_BAR_DATE` |"
yann@76
    53
        cpt=$(((cpt+1)%40))
yann@1
    54
    }
yann@1
    55
    CT_PROG_BAR=_CT_PROG_BAR
yann@1
    56
    export -f _CT_PROG_BAR
yann@1
    57
else
yann@1
    58
    CT_PROG_BAR=
yann@1
    59
fi
yann@1
    60
yann@1
    61
# Apply the color scheme if needed
yann@1
    62
if [ "${CT_LOG_USE_COLORS}" = "y" ]; then
yann@1
    63
    CT_ERROR_COLOR="${_A_NOR}${_A_BRI}${_F_RED}"
yann@1
    64
    CT_WARN_COLOR="${_A_NOR}${_A_BRI}${_F_YEL}"
yann@1
    65
    CT_INFO_COLOR="${_A_NOR}${_A_BRI}${_F_GRN}"
yann@1
    66
    CT_EXTRA_COLOR="${_A_NOR}${_A_DIM}${_F_GRN}"
yann@1
    67
    CT_DEBUG_COLOR="${_A_NOR}${_A_DIM}${_F_WHI}"
yann@1
    68
    CT_NORMAL_COLOR="${_A_NOR}"
yann@1
    69
else
yann@1
    70
    CT_ERROR_COLOR=
yann@1
    71
    CT_WARN_COLOR=
yann@1
    72
    CT_INFO_COLOR=
yann@1
    73
    CT_EXTRA_COLOR=
yann@1
    74
    CT_DEBUG_COLOR=
yann@1
    75
    CT_NORMAL_COLOR=
yann@1
    76
fi
yann@1
    77
yann@1
    78
# Yes! We can do full logging from now on!
yann@1
    79
CT_DoLog INFO "Build started ${CT_STAR_DATE_HUMAN}"
yann@1
    80
yann@63
    81
# renice oursleves
yann@63
    82
renice ${CT_NICE} $$ |CT_DoLog DEBUG
yann@63
    83
yann@1
    84
# Some sanity checks in the environment and needed tools
yann@1
    85
CT_DoLog INFO "Checking environment sanity"
yann@1
    86
yann@1
    87
# Enable known ordering of files in directory listings:
yann@1
    88
CT_Test "Crosstool-NG might not work as expected with LANG=\"${LANG}\"" -n "${LANG}"
yann@1
    89
case "${LC_COLLATE},${LC_ALL}" in
yann@1
    90
  # These four combinations are known to sort files in the correct order:
yann@1
    91
  fr_FR*,)  ;;
yann@1
    92
  en_US*,)  ;;
yann@1
    93
  *,fr_FR*) ;;
yann@1
    94
  *,en_US*) ;;
yann@1
    95
  # Anything else is destined to be borked if not gracefuly handled:
yann@1
    96
  *) CT_DoLog WARN "Either LC_COLLATE=\"${LC_COLLATE}\" or LC_ALL=\"${LC_ALL}\" is not supported."
yann@1
    97
     export LC_ALL=`locale -a |egrep "^(fr_FR|en_US)" |head -n 1`
yann@1
    98
     CT_TestOrAbort "Neither en_US* nor fr_FR* locales found on your system." -n "${LC_ALL}"
yann@1
    99
     CT_DoLog WARN "Forcing to known working LC_ALL=\"${LC_ALL}\"."
yann@1
   100
     ;;
yann@1
   101
esac
yann@1
   102
yann@1
   103
# Other environment sanity checks
yann@1
   104
CT_TestAndAbort "Don't set LD_LIBRARY_PATH. It screws up the build." -n "${LD_LIBRARY_PATH}"
yann@1
   105
CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}"
yann@1
   106
CT_TestAndAbort "Don't set CXXFLAGS. It screws up the build." -n "${CXXFLAGS}"
yann@1
   107
CT_Test "GREP_OPTIONS screws up the build. Resetting." -n "${GREP_OPTIONS}"
yann@1
   108
GREP_OPTIONS=
yann@1
   109
CT_HasOrAbort awk
yann@1
   110
CT_HasOrAbort sed
yann@1
   111
CT_HasOrAbort bison
yann@1
   112
CT_HasOrAbort flex
yann@1
   113
yann@1
   114
CT_DoStep DEBUG "Dumping crosstool-NG configuration"
yann@1
   115
cat ${CT_TOP_DIR}/.config |egrep '^(# |)CT_' |CT_DoLog DEBUG
yann@1
   116
CT_EndStep
yann@1
   117
yann@1
   118
CT_DoLog INFO "Building environment variables"
yann@1
   119
yann@1
   120
# Target triplet: CT_TARGET needs a little love:
yann@63
   121
CT_DoBuildTargetTriplet
yann@1
   122
yann@1
   123
# Now, build up the variables from the user-configured options.
yann@1
   124
CT_KERNEL_FILE="${CT_KERNEL}-${CT_KERNEL_VERSION}"
yann@1
   125
CT_BINUTILS_FILE="binutils-${CT_BINUTILS_VERSION}"
yann@1
   126
if [ "${CT_CC_USE_CORE}" != "y" ]; then
yann@1
   127
    CT_CC_CORE="${CT_CC}"
yann@1
   128
    CT_CC_CORE_VERSION="${CT_CC_VERSION}"
yann@1
   129
    CT_CC_CORE_EXTRA_CONFIG="${CT_CC_EXTRA_CONFIG}"
yann@1
   130
fi
yann@1
   131
CT_CC_CORE_FILE="${CT_CC_CORE}-${CT_CC_CORE_VERSION}"
yann@1
   132
CT_CC_FILE="${CT_CC}-${CT_CC_VERSION}"
yann@1
   133
CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}"
yann@1
   134
[ "${CT_ARCH_FLOAT_SW_LIBFLOAT}" = "y" ] && CT_LIBFLOAT_FILE="libfloat-990616"
yann@1
   135
yann@1
   136
# Kludge: If any of the configured options needs CT_TARGET or CT_TOP_DIR,
yann@1
   137
# then rescan the options file now:
yann@1
   138
. "${CT_TOP_DIR}/.config"
yann@1
   139
yann@1
   140
# Some more sanity checks now that we have all paths set up
yann@1
   141
case "${CT_TARBALLS_DIR},${CT_SRC_DIR},${CT_BUILD_DIR},${CT_PREFIX_DIR},${CT_INSTALL_DIR}" in
yann@1
   142
    *" "*) CT_Abort "Don't use spaces in paths, it breaks things.";;
yann@1
   143
esac
yann@1
   144
yann@1
   145
# Note: we'll always install the core compiler in its own directory, so as to
yann@1
   146
# not mix the two builds: core and final. Anyway, its generic, wether we use
yann@1
   147
# a different compiler as core, or not.
yann@1
   148
CT_CC_CORE_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core"
yann@1
   149
yann@1
   150
# Good, now grab a bit of informations on the system we're being run,
yann@1
   151
# just in case something goes awok, and it's not our fault:
yann@1
   152
CT_SYS_HOSTNAME=`hostname -f 2>/dev/null || true`
yann@1
   153
# Hmmm. Some non-DHCP-enabled machines do not have an FQDN... Fall back to node name.
yann@1
   154
CT_SYS_HOSTNAME="${CT_SYS_HOSTNAME:-`uname -n`}"
yann@1
   155
CT_SYS_KERNEL=`uname -s`
yann@1
   156
CT_SYS_REVISION=`uname -r`
yann@1
   157
# MacOS X lacks '-o' :
yann@63
   158
CT_SYS_OS=`uname -o || echo "Unknown (maybe MacOS-X)"`
yann@1
   159
CT_SYS_MACHINE=`uname -m`
yann@1
   160
CT_SYS_PROCESSOR=`uname -p`
yann@1
   161
CT_SYS_USER="`id -un`"
yann@1
   162
CT_SYS_DATE=`CT_DoDate +%Y%m%d.%H%M%S`
yann@1
   163
CT_SYS_GCC=`gcc -dumpversion`
yann@1
   164
CT_TOOLCHAIN_ID="crosstool-${CT_VERSION} build ${CT_SYS_DATE} by ${CT_SYS_USER}@${CT_SYS_HOSTNAME} for ${CT_TARGET}"
yann@1
   165
yann@63
   166
# Check now if we can write to the destination directory:
yann@63
   167
if [ -d "${CT_INSTALL_DIR}" ]; then
yann@63
   168
    CT_TestAndAbort "Destination directory \"${CT_INSTALL_DIR}\" is not removable" ! -w `dirname "${CT_INSTALL_DIR}"`
yann@63
   169
fi
yann@63
   170
yann@63
   171
# Get rid of pre-existing installed toolchain and previous build directories.
yann@63
   172
# We need to do that _before_ we can safely log, because the log file will
yann@63
   173
# most probably be in the toolchain directory.
yann@63
   174
if [ -d "${CT_INSTALL_DIR}" ]; then
yann@63
   175
    mv "${CT_INSTALL_DIR}" "${CT_INSTALL_DIR}.$$"
yann@63
   176
    nohup rm -rf "${CT_INSTALL_DIR}.$$" >/dev/null 2>&1 &
yann@63
   177
fi
yann@63
   178
if [ -d "${CT_BUILD_DIR}" ]; then
yann@63
   179
    mv "${CT_BUILD_DIR}" "${CT_BUILD_DIR}.$$"
yann@63
   180
    nohup rm -rf "${CT_BUILD_DIR}.$$" >/dev/null 2>&1 &
yann@63
   181
fi
yann@63
   182
if [ "${CT_FORCE_EXTRACT}" = "y" -a -d "${CT_SRC_DIR}" ]; then
yann@63
   183
    mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.$$"
yann@63
   184
    nohup rm -rf "${CT_SRC_DIR}.$$" >/dev/null 2>&1 &
yann@63
   185
fi
yann@63
   186
mkdir -p "${CT_INSTALL_DIR}"
yann@63
   187
mkdir -p "${CT_BUILD_DIR}"
yann@63
   188
mkdir -p "${CT_TARBALLS_DIR}"
yann@63
   189
mkdir -p "${CT_SRC_DIR}"
yann@63
   190
yann@63
   191
# Make all path absolute, it so much easier!
yann@63
   192
# Now we have had the directories created, we even will get rid of embedded .. in paths:
yann@63
   193
CT_SRC_DIR="`CT_MakeAbsolutePath \"${CT_SRC_DIR}\"`"
yann@63
   194
CT_TARBALLS_DIR="`CT_MakeAbsolutePath \"${CT_TARBALLS_DIR}\"`"
yann@63
   195
yann@63
   196
# Redirect log to the actual log file now we can
yann@63
   197
# It's quite understandable that the log file will be installed in the install
yann@63
   198
# directory, so we must first ensure it exists and is writeable (above) before
yann@63
   199
# we can log there
yann@63
   200
case "${CT_LOG_TO_FILE},${CT_LOG_FILE}" in
yann@63
   201
    ,*)   rm -f "${CT_ACTUAL_LOG_FILE}"
yann@63
   202
          CT_ACTUAL_LOG_FILE=/dev/null
yann@63
   203
          ;;
yann@63
   204
    y,/*) mkdir -p "`dirname \"${CT_LOG_FILE}\"`"
yann@63
   205
          mv "${CT_ACTUAL_LOG_FILE}" "${CT_LOG_FILE}"
yann@63
   206
          CT_ACTUAL_LOG_FILE="${CT_LOG_FILE}"
yann@63
   207
          ;;
yann@63
   208
    y,*)  mkdir -p "`pwd`/`dirname \"${CT_LOG_FILE}\"`"
yann@63
   209
          mv "${CT_ACTUAL_LOG_FILE}" "`pwd`/${CT_LOG_FILE}"
yann@63
   210
          CT_ACTUAL_LOG_FILE="`pwd`/${CT_LOG_FILE}"
yann@63
   211
          ;;
yann@63
   212
esac
yann@63
   213
yann@63
   214
# Determine build system if not set by the user
yann@63
   215
CT_Test "You did not specify the build system. Guessing." -z "${CT_BUILD}"
yann@63
   216
CT_BUILD="`${CT_TOP_DIR}/tools/config.sub \"${CT_BUILD:-\`${CT_TOP_DIR}/tools/config.guess\`}\"`"
yann@63
   217
yann@63
   218
# Arrange paths depending on wether we use sys-root or not.
yann@63
   219
if [ "${CT_USE_SYSROOT}" = "y" ]; then
yann@63
   220
    CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}/sys-root"
yann@63
   221
    CT_HEADERS_DIR="${CT_SYSROOT_DIR}/usr/include"
yann@63
   222
    BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
yann@63
   223
    CC_CORE_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
yann@63
   224
    CC_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
yann@63
   225
    LIBC_SYSROOT_ARG=""
yann@63
   226
    # glibc's prefix must be exactly /usr, else --with-sysroot'd gcc will get
yann@63
   227
    # confused when $sysroot/usr/include is not present.
yann@63
   228
    # Note: --prefix=/usr is magic!
yann@63
   229
    # See http://www.gnu.org/software/libc/FAQ.html#s-2.2
yann@63
   230
else
yann@63
   231
    # plain old way. All libraries in prefix/target/lib
yann@63
   232
    CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}"
yann@63
   233
    CT_HEADERS_DIR="${CT_SYSROOT_DIR}/include"
yann@63
   234
    # hack!  Always use --with-sysroot for binutils.
yann@63
   235
    # binutils 2.14 and later obey it, older binutils ignore it.
yann@63
   236
    # Lets you build a working 32->64 bit cross gcc
yann@63
   237
    BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
yann@63
   238
    # Use --with-headers, else final gcc will define disable_glibc while
yann@63
   239
    # building libgcc, and you'll have no profiling
yann@63
   240
    CC_CORE_SYSROOT_ARG="--without-headers"
yann@63
   241
    CC_SYSROOT_ARG="--with-headers=${CT_HEADERS_DIR}"
yann@63
   242
    LIBC_SYSROOT_ARG="prefix="
yann@63
   243
fi
yann@63
   244
yann@63
   245
# Prepare the 'lib' directories in sysroot, else the ../lib64 hack used by
yann@63
   246
# 32 -> 64 bit crosscompilers won't work, and build of final gcc will fail with
yann@63
   247
#  "ld: cannot open crti.o: No such file or directory"
yann@63
   248
mkdir -p "${CT_SYSROOT_DIR}/lib"
yann@63
   249
mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
yann@63
   250
yann@63
   251
# Canadian-cross are really picky on the way they are built. Tweak the values.
yann@63
   252
if [ "${CT_CANADIAN}" = "y" ]; then
yann@63
   253
    # Arrange so that gcc never, ever think that build system == host system
yann@63
   254
    CT_CANADIAN_OPT="--build=`echo \"${CT_BUILD}\" |sed -r -e 's/-/-build_/'`"
yann@63
   255
    # We shall have a compiler for this target!
yann@63
   256
    # Do test here...
yann@63
   257
else
yann@63
   258
    CT_HOST="${CT_BUILD}"
yann@63
   259
    CT_CANADIAN_OPT=
yann@63
   260
    # Add the target toolchain in the path so that we can build the C library
yann@63
   261
    export PATH="${CT_PREFIX_DIR}/bin:${CT_CC_CORE_PREFIX_DIR}/bin:${PATH}"
yann@63
   262
fi
yann@63
   263
yann@63
   264
# Modify GCC_HOST to never be equal to $BUILD or $TARGET
yann@63
   265
# This strange operation causes gcc to always generate a cross-compiler
yann@63
   266
# even if the build machine is the same kind as the host.
yann@63
   267
# This is why CC has to be set when doing a canadian cross; you can't find a
yann@63
   268
# host compiler by appending -gcc to our whacky $GCC_HOST
yann@63
   269
# Kludge: it is reported that the above causes canadian crosses with cygwin
yann@63
   270
# hosts to fail, so avoid it just in that one case.  It would be cleaner to
yann@63
   271
# just move this into the non-canadian case above, but I'm afraid that might
yann@63
   272
# cause some configure script somewhere to decide that since build==host, they
yann@63
   273
# could run host binaries.
yann@63
   274
# (Copied almost as-is from original crosstool):
yann@63
   275
case "${CT_KERNEL},${CT_CANADIAN}" in
yann@63
   276
    cygwin,y) ;;
yann@63
   277
    *)        CT_HOST="`echo \"${CT_HOST}\" |sed -r -e 's/-/-host_/;'`";;
yann@63
   278
esac
yann@63
   279
yann@63
   280
# Ah! Recent versions of binutils need some of the build and/or host system
yann@63
   281
# (read CT_BUILD and CT_HOST) tools to be accessible (ar is but an example).
yann@63
   282
# Do that:
yann@63
   283
CT_DoLog EXTRA "Making build system tools available"
yann@63
   284
mkdir -p "${CT_PREFIX_DIR}/bin"
yann@63
   285
for tool in ar; do
yann@63
   286
    ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_BUILD}-${tool}"
yann@63
   287
    ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_HOST}-${tool}"
yann@63
   288
done
yann@63
   289
yann@63
   290
# Ha. cygwin host have an .exe suffix (extension) for executables.
yann@63
   291
[ "${CT_KERNEL}" = "cygwin" ] && EXEEXT=".exe" || EXEEXT=""
yann@63
   292
yann@63
   293
# Transform the ARCH into a kernel-understandable ARCH
yann@63
   294
case "${CT_ARCH}" in
yann@63
   295
    x86) CT_KERNEL_ARCH=i386;;
yann@63
   296
    ppc) CT_KERNEL_ARCH=powerpc;;
yann@63
   297
    *)   CT_KERNEL_ARCH="${CT_ARCH}";;
yann@63
   298
esac
yann@63
   299
yann@63
   300
# Build up the TARGET_CFLAGS from user-provided options
yann@63
   301
# Override with user-specified CFLAGS
yann@63
   302
[ -n "${CT_ARCH_CPU}" ]  && CT_TARGET_CFLAGS="-mcpu=${CT_ARCH_CPU} ${CT_TARGET_CFLAGS}"
yann@63
   303
[ -n "${CT_ARCH_TUNE}" ] && CT_TARGET_CFLAGS="-mtune=${CT_ARCH_TUNE} ${CT_TARGET_CFLAGS}"
yann@63
   304
[ -n "${CT_ARCH_ARCH}" ] && CT_TARGET_CFLAGS="-march=${CT_ARCH_ARCH} ${CT_TARGET_CFLAGS}"
yann@63
   305
[ -n "${CT_ARCH_FPU}" ]  && CT_TARGET_CFLAGS="-mfpu=${CT_ARCH_FPU} ${CT_TARGET_CFLAGS}"
yann@63
   306
yann@63
   307
# Help gcc
yann@63
   308
CT_CFLAGS_FOR_HOST=
yann@63
   309
[ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST="${CT_CFLAGS_FOR_HOST} -pipe"
yann@63
   310
yann@63
   311
# And help make go faster
yann@63
   312
PARALLELMFLAGS=
yann@63
   313
[ ${CT_PARALLEL_JOBS} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -j${CT_PARALLEL_JOBS}"
yann@63
   314
[ ${CT_LOAD} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -l${CT_LOAD}"
yann@63
   315
yann@63
   316
CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
yann@63
   317
CT_DoLog EXTRA "Building a toolchain for:"
yann@63
   318
CT_DoLog EXTRA "  build  = ${CT_BUILD}"
yann@63
   319
CT_DoLog EXTRA "  host   = ${CT_HOST}"
yann@63
   320
CT_DoLog EXTRA "  target = ${CT_TARGET}"
yann@63
   321
set |egrep '^CT_.+=' |sort |CT_DoLog DEBUG
yann@63
   322
CT_EndStep
yann@1
   323
yann@1
   324
# Include sub-scripts instead of calling them: that way, we do not have to
yann@1
   325
# export any variable, nor re-parse the configuration and functions files.
yann@63
   326
. "${CT_TOP_DIR}/scripts/build/kernel_${CT_KERNEL}.sh"
yann@63
   327
. "${CT_TOP_DIR}/scripts/build/binutils.sh"
yann@63
   328
. "${CT_TOP_DIR}/scripts/build/libc_libfloat.sh"
yann@63
   329
. "${CT_TOP_DIR}/scripts/build/libc_${CT_LIBC}.sh"
yann@63
   330
. "${CT_TOP_DIR}/scripts/build/cc_core_${CT_CC_CORE}.sh"
yann@63
   331
. "${CT_TOP_DIR}/scripts/build/cc_${CT_CC}.sh"
yann@63
   332
yann@63
   333
# Now for the job by itself. Go have a coffee!
yann@63
   334
if [ "${CT_NO_DOWNLOAD}" != "y" ]; then
yann@63
   335
	CT_DoStep INFO "Retrieving needed toolchain components' tarballs"
yann@63
   336
    do_kernel_get
yann@63
   337
    do_binutils_get
yann@64
   338
    do_cc_core_get
yann@64
   339
    do_libfloat_get
yann@63
   340
    do_libc_get
yann@63
   341
    do_cc_get
yann@63
   342
    CT_EndStep
yann@63
   343
fi
yann@63
   344
yann@63
   345
if [ "${CT_ONLY_DOWNLOAD}" != "y" ]; then
yann@63
   346
    if [ "${CT_FORCE_EXTRACT}" = "y" ]; then
yann@63
   347
        mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.$$"
yann@63
   348
        nohup rm -rf "${CT_SRC_DIR}.$$" >/dev/null 2>&1
yann@63
   349
    fi
yann@63
   350
    CT_DoStep INFO "Extracting and patching toolchain components"
yann@63
   351
    do_kernel_extract
yann@63
   352
    do_binutils_extract
yann@63
   353
    do_libc_extract
yann@63
   354
    do_libfloat_extract
yann@63
   355
    do_cc_core_extract
yann@63
   356
    do_cc_extract
yann@63
   357
    CT_EndStep
yann@63
   358
yann@63
   359
    if [ "${CT_ONLY_EXTRACT}" != "y" ]; then
yann@63
   360
        do_libc_check_config
yann@63
   361
        do_kernel_check_config
yann@63
   362
        do_kernel_headers
yann@63
   363
        do_binutils
yann@63
   364
        do_libc_headers
yann@63
   365
        do_cc_core
yann@63
   366
        do_libfloat
yann@63
   367
        do_libc
yann@63
   368
        do_cc
yann@63
   369
        do_libc_finish
yann@63
   370
    fi
yann@63
   371
fi
yann@1
   372
yann@1
   373
if [ -n "${CT_TARGET_ALIAS}" ]; then
yann@1
   374
    CT_DoLog EXTRA "Creating symlinks from \"${CT_TARGET}-*\" to \"${CT_TARGET_ALIAS}-*\""
yann@1
   375
    CT_Pushd "${CT_PREFIX_DIR}/bin"
yann@1
   376
    for t in "${CT_TARGET}-"*; do
yann@1
   377
        _t="`echo \"$t\" |sed -r -e 's/^'\"${CT_TARGET}\"'-/'\"${CT_TARGET_ALIAS}\"'-/;'`"
yann@1
   378
        CT_DoLog DEBUG "Linking \"${_t}\" -> \"${t}\""
yann@1
   379
        ln -s "${t}" "${_t}"
yann@1
   380
    done
yann@1
   381
    CT_Popd
yann@1
   382
fi
yann@1
   383
yann@14
   384
if [ "${CT_REMOVE_DOCS}" = "y" ]; then
yann@14
   385
	CT_DoLog INFO "Removing installed documentation"
yann@14
   386
    rm -rf "${CT_PREFIX_DIR}/"{man,info}
yann@14
   387
fi
yann@14
   388
yann@1
   389
CT_STOP_DATE=`CT_DoDate +%s%N`
yann@1
   390
CT_STOP_DATE_HUMAN=`CT_DoDate +%Y%m%d.%H%M%S`
yann@1
   391
CT_DoLog INFO "Build completed at ${CT_STOP_DATE_HUMAN}"
yann@1
   392
elapsed=$((CT_STOP_DATE-CT_STAR_DATE))
yann@1
   393
elapsed_min=$((elapsed/(60*1000*1000*1000)))
yann@1
   394
elapsed_sec=`printf "%02d" $(((elapsed%(60*1000*1000*1000))/(1000*1000*1000)))`
yann@1
   395
elapsed_csec=`printf "%02d" $(((elapsed%(1000*1000*1000))/(10*1000*1000)))`
yann@1
   396
CT_DoLog INFO "(elapsed: ${elapsed_min}:${elapsed_sec}.${elapsed_csec})"
yann@1
   397
yann@1
   398
# Restore a 'normal' color setting
yann@1
   399
echo -en "${CT_NORMAL_COLOR}"
yann@1
   400
yann@1
   401
trap - EXIT