scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Apr 02 21:21:15 2009 +0000 (2009-04-02)
branch1.3
changeset 1286 3eac04dba46a
parent 1090 39c307991b24
permissions -rwxr-xr-x
Bump version to 1.3.3+svn.

/branches/1.3/.version | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
     1 #!/bin/bash
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package.
     4 
     5 # This is the main entry point to crosstool
     6 # This will:
     7 #   - download, extract and patch the toolchain components
     8 #   - build and install each components in turn
     9 #   - and eventually test the resulting toolchain
    10 
    11 # What this file does is prepare the environment, based upon the user-choosen
    12 # options. It also checks the existing environment for un-friendly variables,
    13 # and builds the tools.
    14 
    15 # Parse the common functions
    16 # Note: some initialisation and sanitizing is done while parsing this file,
    17 # most notably:
    18 #  - set trap handler on errors,
    19 #  - don't hash commands lookups,
    20 #  - initialise logging.
    21 . "${CT_LIB_DIR}/scripts/functions"
    22 
    23 # Parse the configuration file
    24 # It has some info about the logging facility, so include it early
    25 . .config
    26 
    27 # Overide the locale early, in case we ever translate crosstool-NG messages
    28 [ -z "${CT_NO_OVERIDE_LC_MESSAGES}" ] && export LC_ALL=C
    29 
    30 # Start date. Can't be done until we know the locale
    31 CT_STAR_DATE=$(CT_DoDate +%s%N)
    32 CT_STAR_DATE_HUMAN=$(CT_DoDate +%Y%m%d.%H%M%S)
    33 
    34 # Yes! We can do full logging from now on!
    35 CT_DoLog INFO "Build started ${CT_STAR_DATE_HUMAN}"
    36 
    37 # renice oursleves
    38 CT_DoExecLog DEBUG renice ${CT_NICE} $$
    39 
    40 CT_DoStep DEBUG "Dumping user-supplied crosstool-NG configuration"
    41 CT_DoExecLog DEBUG egrep '^(# |)CT_' .config
    42 CT_EndStep
    43 
    44 # Some sanity checks in the environment and needed tools
    45 CT_DoLog INFO "Checking environment sanity"
    46 
    47 CT_DoLog DEBUG "Unsetting and unexporting MAKEFLAGS"
    48 unset MAKEFLAGS
    49 export MAKEFLAGS
    50 
    51 # Other environment sanity checks
    52 CT_TestAndAbort "Don't set LD_LIBRARY_PATH. It screws up the build." -n "${LD_LIBRARY_PATH}"
    53 CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}"
    54 CT_TestAndAbort "Don't set CXXFLAGS. It screws up the build." -n "${CXXFLAGS}"
    55 CT_Test "GREP_OPTIONS screws up the build. Resetting." -n "${GREP_OPTIONS}"
    56 export GREP_OPTIONS=
    57 
    58 CT_DoLog INFO "Building environment variables"
    59 
    60 # Include sub-scripts instead of calling them: that way, we do not have to
    61 # export any variable, nor re-parse the configuration and functions files.
    62 . "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh"
    63 . "${CT_LIB_DIR}/scripts/build/kernel/${CT_KERNEL}.sh"
    64 . "${CT_LIB_DIR}/scripts/build/gmp.sh"
    65 . "${CT_LIB_DIR}/scripts/build/mpfr.sh"
    66 . "${CT_LIB_DIR}/scripts/build/binutils.sh"
    67 . "${CT_LIB_DIR}/scripts/build/libc/${CT_LIBC}.sh"
    68 . "${CT_LIB_DIR}/scripts/build/cc/${CT_CC}.sh"
    69 . "${CT_LIB_DIR}/scripts/build/tools.sh"
    70 . "${CT_LIB_DIR}/scripts/build/debug.sh"
    71 
    72 # Target tuple: CT_TARGET needs a little love:
    73 CT_DoBuildTargetTuple
    74 
    75 # Kludge: If any of the configured options needs CT_TARGET,
    76 # then rescan the options file now:
    77 . "${CT_TOP_DIR}/.config"
    78 
    79 # Second kludge: merge user-supplied target CFLAGS with architecture-provided
    80 # target CFLAGS. Do the same for LDFLAGS in case it happens in the future.
    81 # Put user-supplied flags at the end, so that they take precedence.
    82 CT_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_TARGET_CFLAGS}"
    83 CT_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_TARGET_LDFLAGS}"
    84 CT_CC_CORE_EXTRA_CONFIG="${CT_ARCH_CC_CORE_EXTRA_CONFIG} ${CT_CC_CORE_EXTRA_CONFIG}"
    85 CT_CC_EXTRA_CONFIG="${CT_ARCH_CC_EXTRA_CONFIG} ${CT_CC_EXTRA_CONFIG}"
    86 
    87 # Now, build up the variables from the user-configured options.
    88 CT_KERNEL_FILE="${CT_KERNEL}-${CT_KERNEL_VERSION}"
    89 CT_BINUTILS_FILE="binutils-${CT_BINUTILS_VERSION}"
    90 CT_GMP_FILE="gmp-${CT_GMP_VERSION}"
    91 CT_MPFR_FILE="mpfr-${CT_MPFR_VERSION}"
    92 CT_CC_FILE="${CT_CC}-${CT_CC_VERSION}"
    93 CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}"
    94 
    95 # Where will we work?
    96 : "${CT_WORK_DIR:=${CT_TOP_DIR}/targets}"
    97 CT_TARBALLS_DIR="${CT_WORK_DIR}/tarballs"
    98 CT_SRC_DIR="${CT_WORK_DIR}/src"
    99 CT_BUILD_DIR="${CT_WORK_DIR}/${CT_TARGET}/build"
   100 CT_DEBUG_INSTALL_DIR="${CT_INSTALL_DIR}/${CT_TARGET}/debug-root"
   101 # Note: we'll always install the core compiler in its own directory, so as to
   102 # not mix the two builds: core and final.
   103 CT_CC_CORE_STATIC_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core-static"
   104 CT_CC_CORE_SHARED_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core-shared"
   105 CT_STATE_DIR="${CT_WORK_DIR}/${CT_TARGET}/state"
   106 
   107 # We must ensure that we can restart if asked for!
   108 if [ -n "${CT_RESTART}" -a ! -d "${CT_STATE_DIR}"  ]; then
   109     CT_DoLog ERROR "You asked to restart a non-restartable build"
   110     CT_DoLog ERROR "This happened because you didn't set CT_DEBUG_CT_SAVE_STEPS"
   111     CT_DoLog ERROR "in the config options for the previous build, or the state"
   112     CT_DoLog ERROR "directory for the previous build was deleted."
   113     CT_Abort "I will stop here to avoid any carnage"
   114 fi
   115 
   116 if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then
   117     # Make absolute path, it so much easier!
   118     CT_LOCAL_TARBALLS_DIR=$(CT_MakeAbsolutePath "${CT_LOCAL_TARBALLS_DIR}")
   119 fi
   120 
   121 # If the local tarball directory does not exist, say so, and don't try to save there!
   122 if [ ! -d "${CT_LOCAL_TARBALLS_DIR}" ]; then
   123     CT_DoLog WARN "Directory '${CT_LOCAL_TARBALLS_DIR}' does not exist. Will not save downloaded tarballs to local storage."
   124     CT_SAVE_TARBALLS=
   125 fi
   126 
   127 # Some more sanity checks now that we have all paths set up
   128 case "${CT_LOCAL_TARBALLS_DIR},${CT_TARBALLS_DIR},${CT_SRC_DIR},${CT_BUILD_DIR},${CT_PREFIX_DIR},${CT_INSTALL_DIR}" in
   129     *" "*) CT_Abort "Don't use spaces in paths, it breaks things.";;
   130 esac
   131 
   132 # Check now if we can write to the destination directory:
   133 if [ -d "${CT_INSTALL_DIR}" ]; then
   134     CT_TestAndAbort "Destination directory '${CT_INSTALL_DIR}' is not removable" ! -w $(dirname "${CT_INSTALL_DIR}")
   135 fi
   136 
   137 # Good, now grab a bit of informations on the system we're being run on,
   138 # just in case something goes awok, and it's not our fault:
   139 CT_SYS_USER=$(id -un)
   140 CT_SYS_HOSTNAME=$(hostname -f 2>/dev/null || true)
   141 # Hmmm. Some non-DHCP-enabled machines do not have an FQDN... Fall back to node name.
   142 CT_SYS_HOSTNAME="${CT_SYS_HOSTNAME:-$(uname -n)}"
   143 CT_SYS_KERNEL=$(uname -s)
   144 CT_SYS_REVISION=$(uname -r)
   145 # MacOS X lacks '-o' :
   146 CT_SYS_OS=$(uname -o || echo "Unknown (maybe MacOS-X)")
   147 CT_SYS_MACHINE=$(uname -m)
   148 CT_SYS_PROCESSOR=$(uname -p)
   149 CT_SYS_GCC=$(gcc -dumpversion)
   150 CT_SYS_TARGET=$(CT_DoConfigGuess)
   151 CT_TOOLCHAIN_ID="crosstool-${CT_VERSION} build ${CT_STAR_DATE_HUMAN} by ${CT_SYS_USER}@${CT_SYS_HOSTNAME}"
   152 
   153 CT_DoLog EXTRA "Preparing working directories"
   154 
   155 # Ah! The build directory shall be eradicated, even if we restart!
   156 if [ -d "${CT_BUILD_DIR}" ]; then
   157     CT_DoExecLog ALL rm -rf "${CT_BUILD_DIR}"
   158 fi
   159 
   160 # Don't eradicate directories if we need to restart
   161 if [ -z "${CT_RESTART}" ]; then
   162     # Get rid of pre-existing installed toolchain and previous build directories.
   163     # We need to do that _before_ we can safely log, because the log file will
   164     # most probably be in the toolchain directory.
   165     if [ "${CT_FORCE_DOWNLOAD}" = "y" -a -d "${CT_TARBALLS_DIR}" ]; then
   166         CT_DoExecLog ALL rm -rf "${CT_TARBALLS_DIR}"
   167     fi
   168     if [ "${CT_FORCE_EXTRACT}" = "y" -a -d "${CT_SRC_DIR}" ]; then
   169         CT_DoExecLog ALL rm -rf "${CT_SRC_DIR}"
   170     fi
   171     if [ -d "${CT_INSTALL_DIR}" ]; then
   172         CT_DoExecLog ALL rm -rf "${CT_INSTALL_DIR}"
   173     fi
   174     if [ -d "${CT_DEBUG_INSTALL_DIR}" ]; then
   175         CT_DoExecLog ALL rm -rf "${CT_DEBUG_INSTALL_DIR}"
   176     fi
   177     # In case we start anew, get rid of the previously saved state directory
   178     if [ -d "${CT_STATE_DIR}" ]; then
   179         CT_DoExecLog ALL rm -rf "${CT_STATE_DIR}"
   180     fi
   181 fi
   182 
   183 # Create the directories we'll use, even if restarting: it does no harm to
   184 # create already existent directories, and CT_BUILD_DIR needs to be created
   185 # anyway
   186 CT_DoExecLog ALL mkdir -p "${CT_TARBALLS_DIR}"
   187 CT_DoExecLog ALL mkdir -p "${CT_SRC_DIR}"
   188 CT_DoExecLog ALL mkdir -p "${CT_BUILD_DIR}"
   189 CT_DoExecLog ALL mkdir -p "${CT_INSTALL_DIR}"
   190 CT_DoExecLog ALL mkdir -p "${CT_PREFIX_DIR}"
   191 CT_DoExecLog ALL mkdir -p "${CT_DEBUG_INSTALL_DIR}"
   192 CT_DoExecLog ALL mkdir -p "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   193 CT_DoExecLog ALL mkdir -p "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   194 CT_DoExecLog ALL mkdir -p "${CT_STATE_DIR}"
   195 
   196 # Kludge: CT_INSTALL_DIR and CT_PREFIX_DIR might have grown read-only if
   197 # the previous build was successful. To be able to move the logfile there,
   198 # switch them back to read/write
   199 CT_DoExecLog ALL chmod -R u+w "${CT_INSTALL_DIR}" "${CT_PREFIX_DIR}"
   200 
   201 # Redirect log to the actual log file now we can
   202 # It's quite understandable that the log file will be installed in the install
   203 # directory, so we must first ensure it exists and is writeable (above) before
   204 # we can log there
   205 exec >/dev/null
   206 case "${CT_LOG_TO_FILE}" in
   207     y)  CT_LOG_FILE="${CT_PREFIX_DIR}/build.log"
   208         cat "${tmp_log_file}" >>"${CT_LOG_FILE}"
   209         rm -f "${tmp_log_file}"
   210         exec >>"${CT_LOG_FILE}"
   211         ;;
   212     *)  rm -f "${tmp_log_file}"
   213         ;;
   214 esac
   215 
   216 # Setting up the rest of the environment only if not restarting
   217 if [ -z "${CT_RESTART}" ]; then
   218     # What's our shell?
   219     # Will be plain /bin/sh on most systems, except if we have /bin/ash and we
   220     # _explictly_ required using it
   221     CT_SHELL="/bin/sh"
   222     [ "${CT_CONFIG_SHELL_ASH}" = "y" -a -x "/bin/ash" ] && CT_SHELL="/bin/ash"
   223 
   224     # Arrange paths depending on wether we use sys-root or not.
   225     if [ "${CT_USE_SYSROOT}" = "y" ]; then
   226         CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}/sys-root"
   227         CT_HEADERS_DIR="${CT_SYSROOT_DIR}/usr/include"
   228         BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   229         CC_CORE_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   230         CC_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   231         LIBC_SYSROOT_ARG=""
   232         # glibc's prefix must be exactly /usr, else --with-sysroot'd gcc will get
   233         # confused when $sysroot/usr/include is not present.
   234         # Note: --prefix=/usr is magic!
   235         # See http://www.gnu.org/software/libc/FAQ.html#s-2.2
   236     else
   237         # plain old way. All libraries in prefix/target/lib
   238         CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}"
   239         CT_HEADERS_DIR="${CT_SYSROOT_DIR}/include"
   240         # hack!  Always use --with-sysroot for binutils.
   241         # binutils 2.14 and later obey it, older binutils ignore it.
   242         # Lets you build a working 32->64 bit cross gcc
   243         BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   244         # Use --with-headers, else final gcc will define disable_glibc while
   245         # building libgcc, and you'll have no profiling
   246         CC_CORE_SYSROOT_ARG="--without-headers"
   247         CC_SYSROOT_ARG="--with-headers=${CT_HEADERS_DIR}"
   248         LIBC_SYSROOT_ARG="prefix="
   249     fi
   250 
   251     # Prepare the 'lib' directories in sysroot, else the ../lib64 hack used by
   252     # 32 -> 64 bit crosscompilers won't work, and build of final gcc will fail with
   253     #  "ld: cannot open crti.o: No such file or directory"
   254     CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/lib"
   255     CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
   256 
   257     # Prevent gcc from installing its libraries outside of the sys-root
   258     CT_DoExecLog ALL ln -sf "sys-root/lib" "${CT_PREFIX_DIR}/${CT_TARGET}/lib"
   259 
   260     # Now, in case we're 64 bits, just have lib64/ be a symlink to lib/
   261     # so as to have all libraries in the same directory (we can do that
   262     # because we are *not* multilib).
   263     if [ "${CT_ARCH_64}" = "y" ]; then
   264         CT_DoExecLog ALL ln -sf "lib" "${CT_SYSROOT_DIR}/lib64"
   265         CT_DoExecLog ALL ln -sf "lib" "${CT_SYSROOT_DIR}/usr/lib64"
   266         CT_DoExecLog ALL ln -sf "sys-root/lib" "${CT_PREFIX_DIR}/${CT_TARGET}/lib64"
   267     fi
   268 
   269     # Determine build system if not set by the user
   270     CT_Test "You did not specify the build system. That's OK, I can guess..." -z "${CT_BUILD}"
   271     case "${CT_BUILD}" in
   272         "") CT_BUILD=$("${CT_BUILD_PREFIX}gcc${CT_BUILD_SUFFIX}" -dumpmachine);;
   273     esac
   274 
   275     # Prepare mangling patterns to later modifyu BUILD and HOST (see below)
   276     case "${CT_TOOLCHAIN_TYPE}" in
   277         cross)
   278             CT_HOST="${CT_BUILD}"
   279             build_mangle="build_"
   280             host_mangle="build_"
   281             ;;
   282         *)  CT_Abort "No code for '${CT_TOOLCHAIN_TYPE}' toolchain type!"
   283             ;;
   284     esac
   285 
   286     # Save the real tuples to generate shell-wrappers to the real tools
   287     CT_REAL_BUILD="${CT_BUILD}"
   288     CT_REAL_HOST="${CT_HOST}"
   289 
   290     # Canonicalise CT_BUILD and CT_HOST
   291     # Not only will it give us full-qualified tuples, but it will also ensure
   292     # that they are valid tuples (in case of typo with user-provided tuples)
   293     # That's way better than trying to rewrite config.sub ourselves...
   294     CT_BUILD=$(CT_DoConfigSub "${CT_BUILD}")
   295     CT_HOST=$(CT_DoConfigSub "${CT_HOST}")
   296 
   297     # Modify BUILD and HOST so that gcc always generate a cross-compiler
   298     # even if any of the build, host or target machines are the same.
   299     # NOTE: we'll have to mangle the (BUILD|HOST)->TARGET x-compiler to
   300     #       support canadain build, later...
   301     CT_BUILD="${CT_BUILD/-/-${build_mangle}}"
   302     CT_HOST="${CT_HOST/-/-${host_mangle}}"
   303 
   304     # Now we have mangled our BUILD and HOST tuples, we must fake the new
   305     # cross-tools for those mangled tuples.
   306     BANG='!'
   307     CT_DoLog DEBUG "Making build system tools available"
   308     CT_DoExecLog ALL mkdir -p "${CT_PREFIX_DIR}/bin"
   309     for m in BUILD HOST; do
   310         r="CT_REAL_${m}"
   311         v="CT_${m}"
   312         p="CT_${m}_PREFIX"
   313         s="CT_${m}_SUFFIX"
   314         if [ -n "${!p}" ]; then
   315             t="${!p}"
   316         else
   317             t="${!r}-"
   318         fi
   319 
   320         for tool in ar as dlltool gcc g++ gnatbind gnatmake ld nm objcopy objdump ranlib strip windres; do
   321             # First try with prefix + suffix
   322             # Then try with prefix only
   323             # Then try with suffix only, but only for BUILD, and HOST iff REAL_BUILD == REAL_HOST
   324             # Finally try with neither prefix nor suffix, but only for BUILD, and HOST iff REAL_BUILD == REAL_HOST
   325             # This is needed, because some tools have a prefix and
   326             # a suffix (eg. gcc), while others may have only one,
   327             # or even none (eg. binutils)
   328             where=$(CT_Which "${t}${tool}${!s}")
   329             [ -z "${where}" ] && where=$(CT_Which "${t}${tool}")
   330             if [    -z "${where}"                         \
   331                  -a \(    "${m}" = "BUILD"                \
   332                        -o "${CT_REAL_BUILD}" = "${!r}" \) ]; then
   333                 where=$(CT_Which "${tool}${!s}")
   334             fi
   335             if [ -z "${where}"                            \
   336                  -a \(    "${m}" = "BUILD"                \
   337                        -o "${CT_REAL_BUILD}" = "${!r}" \) ]; then
   338                 where=$(CT_Which "${tool}")
   339             fi
   340 
   341             # Not all tools are available for all platforms, but some are really,
   342             # bally needed
   343             if [ -n "${where}" ]; then
   344                 CT_DoLog DEBUG "  '${!v}-${tool}' -> '${where}'"
   345                 printf "#${BANG}${CT_SHELL}\nexec '${where}' \"\${@}\"\n" >"${CT_PREFIX_DIR}/bin/${!v}-${tool}"
   346                 CT_DoExecLog ALL chmod 700 "${CT_PREFIX_DIR}/bin/${!v}-${tool}"
   347             else
   348                 # We'll at least need some of them...
   349                 case "${tool}" in
   350                     ar|as|gcc|ld|nm|objcopy|objdump|ranlib)
   351                         CT_Abort "Missing: '${t}${tool}${!s}' or '${t}${tool}' or '${tool}' : either needed!"
   352                         ;;
   353                     *)
   354                         # It does not deserve a WARN level.
   355                         CT_DoLog DEBUG "  Missing: '${t}${tool}${!s}' or '${t}${tool}' or '${tool}' : not required."
   356                         ;;
   357                 esac
   358             fi
   359         done
   360     done
   361 
   362     # Carefully add paths in the order we want them:
   363     #  - first try in ${CT_PREFIX_DIR}/bin
   364     #  - then try in ${CT_CC_CORE_SHARED_PREFIX_DIR}/bin
   365     #  - then try in ${CT_CC_CORE_STATIC_PREFIX_DIR}/bin
   366     #  - fall back to searching user's PATH
   367     # Of course, neither cross-native nor canadian can run on BUILD,
   368     # so don't add those PATHs in this case...
   369     case "${CT_TOOLCHAIN_TYPE}" in
   370         cross)  export PATH="${CT_PREFIX_DIR}/bin:${CT_CC_CORE_SHARED_PREFIX_DIR}/bin:${CT_CC_CORE_STATIC_PREFIX_DIR}/bin:${PATH}";;
   371         *)  ;;
   372     esac
   373 
   374     # Some makeinfo versions are a pain in [put your most sensible body part here].
   375     # Go ahead with those, by creating a wrapper that keeps partial files, and that
   376     # never fails:
   377     CT_DoLog DEBUG "  'makeinfo' -> '$(CT_Which makeinfo)'"
   378     echo -e "#!/bin/sh\n$(CT_Which makeinfo) --force \"\${@}\"\ntrue" >"${CT_PREFIX_DIR}/bin/makeinfo"
   379     CT_DoExecLog ALL chmod 700 "${CT_PREFIX_DIR}/bin/makeinfo"
   380 
   381     # Help gcc
   382     CT_CFLAGS_FOR_HOST=
   383     [ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST="${CT_CFLAGS_FOR_HOST} -pipe"
   384 
   385     # Override the configured jobs with what's been given on the command line
   386     [ -n "${CT_JOBS}" ] && CT_PARALLEL_JOBS="${CT_JOBS}"
   387 
   388     # Set the shell to be used by ./configure scripts and by Makefiles (those
   389     # that support it!).
   390     export CONFIG_SHELL="${CT_SHELL}"
   391 
   392     # And help make go faster
   393     PARALLELMFLAGS=
   394     [ ${CT_PARALLEL_JOBS} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -j${CT_PARALLEL_JOBS}"
   395     [ ${CT_LOAD} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -l${CT_LOAD}"
   396     export PARALLELMFLAGS
   397 
   398     CT_DoLog EXTRA "Installing user-supplied crosstool-NG configuration"
   399     CT_DoExecLog DEBUG install -m 0755 "${CT_LIB_DIR}/tools/toolchain-config.in" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config"
   400     bzip2 -c -9 .config >>"${CT_PREFIX_DIR}/bin/${CT_TARGET}-ct-ng.config"
   401 
   402     CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
   403     CT_DoLog EXTRA "Building a toolchain for:"
   404     CT_DoLog EXTRA "  build  = ${CT_REAL_BUILD}"
   405     CT_DoLog EXTRA "  host   = ${CT_REAL_HOST}"
   406     CT_DoLog EXTRA "  target = ${CT_TARGET}"
   407     set |egrep '^CT_.+=' |sort |CT_DoLog DEBUG
   408     CT_EndStep
   409 fi
   410 
   411 if [ -z "${CT_RESTART}" ]; then
   412     CT_DoStep INFO "Retrieving needed toolchain components' tarballs"
   413     do_kernel_get
   414     do_gmp_get
   415     do_mpfr_get
   416     do_binutils_get
   417     do_cc_get
   418     do_libc_get
   419     do_tools_get
   420     do_debug_get
   421     CT_EndStep
   422 
   423     if [ "${CT_ONLY_DOWNLOAD}" != "y" ]; then
   424         if [ "${CT_FORCE_EXTRACT}" = "y" ]; then
   425             mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.force.$$"
   426             CT_DoExecLog ALL rm -rf "${CT_SRC_DIR}.force.$$"
   427             CT_DoExecLog ALL mkdir -p "${CT_SRC_DIR}"
   428         fi
   429         CT_DoStep INFO "Extracting and patching toolchain components"
   430         do_kernel_extract
   431         do_gmp_extract
   432         do_mpfr_extract
   433         do_binutils_extract
   434         do_cc_extract
   435         do_libc_extract
   436         do_tools_extract
   437         do_debug_extract
   438         CT_EndStep
   439     fi
   440 fi
   441 
   442 # Now for the job by itself. Go have a coffee!
   443 if [ "${CT_ONLY_DOWNLOAD}" != "y" -a "${CT_ONLY_EXTRACT}" != "y" ]; then
   444     # Because of CT_RESTART, this becomes quite complex
   445     do_stop=0
   446     prev_step=
   447     [ -n "${CT_RESTART}" ] && do_it=0 || do_it=1
   448     # Aha! CT_STEPS comes from steps.mk!
   449     for step in ${CT_STEPS}; do
   450         if [ ${do_it} -eq 0 ]; then
   451             if [ "${CT_RESTART}" = "${step}" ]; then
   452                 CT_DoLoadState "${step}"
   453                 do_it=1
   454                 do_stop=0
   455             fi
   456         else
   457             CT_DoSaveState ${step}
   458             if [ ${do_stop} -eq 1 ]; then
   459                 CT_DoLog ERROR "Stopping just after step '${prev_step}', as requested."
   460                 exit 0
   461             fi
   462         fi
   463         if [ ${do_it} -eq 1 ]; then
   464             do_${step}
   465             if [ "${CT_STOP}" = "${step}" ]; then
   466                 do_stop=1
   467             fi
   468             if [ "${CT_DEBUG_PAUSE_STEPS}" = "y" ]; then
   469                 CT_DoPause "Step '${step}' finished"
   470             fi
   471         fi
   472         prev_step="${step}"
   473     done
   474 
   475     CT_DoLog INFO "================================================================="
   476 
   477     CT_DoLog DEBUG "Removing access to the build system tools"
   478     find "${CT_PREFIX_DIR}/bin" -name "${CT_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   479     find "${CT_PREFIX_DIR}/bin" -name "${CT_HOST}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   480     CT_DoExecLog DEBUG rm -fv "${CT_PREFIX_DIR}/bin/makeinfo"
   481 
   482     if [ "${CT_BARE_METAL}" != "y" ]; then
   483         CT_DoLog EXTRA "Installing the populate helper"
   484         sed -r -e 's|@@CT_TARGET@@|'"${CT_TARGET}"'|g;' \
   485             "${CT_LIB_DIR}/tools/populate.in"           \
   486             >"${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   487         CT_DoExecLog ALL chmod 755 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   488     fi
   489 
   490     # Create the aliases to the target tools
   491     CT_DoLog EXTRA "Creating toolchain aliases"
   492     CT_Pushd "${CT_PREFIX_DIR}/bin"
   493     for t in "${CT_TARGET}-"*; do
   494         if [ -n "${CT_TARGET_ALIAS}" ]; then
   495             _t=$(echo "$t" |sed -r -e 's/^'"${CT_TARGET}"'-/'"${CT_TARGET_ALIAS}"'-/;')
   496             CT_DoExecLog ALL ln -sv "${t}" "${_t}"
   497         fi
   498         if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
   499             _t=$(echo "$t" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
   500             CT_DoExecLog ALL ln -sv "${t}" "${_t}"
   501         fi
   502     done
   503     CT_Popd
   504 
   505     # Remove the generated documentation files
   506     if [ "${CT_REMOVE_DOCS}" = "y" ]; then
   507     	CT_DoLog INFO "Removing installed documentation"
   508         CT_DoExecLog ALL rm -rf "${CT_PREFIX_DIR}/"{,usr/}{man,info}
   509         CT_DoExecLog ALL rm -rf "${CT_SYSROOT_DIR}/"{,usr/}{man,info}
   510         CT_DoExecLog ALL rm -rf "${CT_DEBUG_INSTALL_DIR}/"{,usr/}{man,info}
   511     fi
   512 fi
   513 
   514 CT_DoEnd INFO
   515 
   516 # From now-on, it can become impossible to log any time, because
   517 # either we're compressing the log file, or it can become RO any
   518 # moment... Consign all ouptut to oblivion...
   519 CT_DoLog INFO "Finishing installation (may take a few seconds)..."
   520 exec >/dev/null 2>&1
   521 
   522 [ "${CT_LOG_FILE_COMPRESS}" = y ] && bzip2 -9 "${CT_LOG_FILE}"
   523 [ "${CT_INSTALL_DIR_RO}" = "y"  ] && chmod -R a-w "${CT_INSTALL_DIR}"
   524 
   525 trap - EXIT