scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 04 14:18:20 2009 +0000 (2009-01-04)
changeset 1116 46f6f7f9f37d
parent 1098 035f231898cc
child 1117 f70e9b41339b
permissions -rwxr-xr-x
Get rid off CT_KERNEL_FILE.

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