scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 28 21:32:33 2008 +0000 (2008-07-28)
changeset 747 d3e603e7c17c
parent 725 d2c46e039cd8
child 754 b13657cd64b3
child 778 44b2999e2c11
permissions -rwxr-xr-x
Fourth step at renaming patches: renumber all patches with a 10-step.
     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 CT_STAR_DATE=$(CT_DoDate +%s%N)
    24 CT_STAR_DATE_HUMAN=$(CT_DoDate +%Y%m%d.%H%M%S)
    25 
    26 # Are we configured? We'll need that later...
    27 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    28 
    29 # Parse the configuration file
    30 # It has some info about the logging facility, so include it early
    31 . "${CT_TOP_DIR}/.config"
    32 
    33 # Yes! We can do full logging from now on!
    34 CT_DoLog INFO "Build started ${CT_STAR_DATE_HUMAN}"
    35 
    36 # renice oursleves
    37 renice ${CT_NICE} $$ |CT_DoLog DEBUG
    38 
    39 CT_DoStep DEBUG "Dumping crosstool-NG configuration"
    40 cat "${CT_TOP_DIR}/.config" |egrep '^(# |)CT_' |CT_DoLog DEBUG
    41 CT_EndStep
    42 
    43 # Some sanity checks in the environment and needed tools
    44 CT_DoLog INFO "Checking environment sanity"
    45 
    46 CT_DoLog DEBUG "Unsetting and unexporting MAKEFLAGS"
    47 unset MAKEFLAGS
    48 export MAKEFLAGS
    49 
    50 # Other environment sanity checks
    51 CT_TestAndAbort "Don't set LD_LIBRARY_PATH. It screws up the build." -n "${LD_LIBRARY_PATH}"
    52 CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}"
    53 CT_TestAndAbort "Don't set CXXFLAGS. It screws up the build." -n "${CXXFLAGS}"
    54 CT_Test "GREP_OPTIONS screws up the build. Resetting." -n "${GREP_OPTIONS}"
    55 GREP_OPTIONS=
    56 
    57 CT_DoLog INFO "Building environment variables"
    58 
    59 # Parse architecture-specific functions
    60 . "${CT_LIB_DIR}/arch/${CT_ARCH}/functions"
    61 
    62 # Target tuple: CT_TARGET needs a little love:
    63 CT_DoBuildTargetTuple
    64 
    65 # Kludge: If any of the configured options needs CT_TARGET,
    66 # then rescan the options file now:
    67 . "${CT_TOP_DIR}/.config"
    68 
    69 # Second kludge: merge user-supplied target CFLAGS with architecture-provided
    70 # target CFLAGS. Do the same for LDFLAGS in case it happens in the future.
    71 # Put user-supplied flags at the end, so that they take precedence.
    72 CT_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_TARGET_CFLAGS}"
    73 CT_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_TARGET_LDFLAGS}"
    74 
    75 # Now, build up the variables from the user-configured options.
    76 CT_KERNEL_FILE="${CT_KERNEL}-${CT_KERNEL_VERSION}"
    77 CT_BINUTILS_FILE="binutils-${CT_BINUTILS_VERSION}"
    78 CT_GMP_FILE="gmp-${CT_GMP_VERSION}"
    79 CT_MPFR_FILE="mpfr-${CT_MPFR_VERSION}"
    80 CT_CC_FILE="${CT_CC}-${CT_CC_VERSION}"
    81 CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}"
    82 
    83 # Where will we work?
    84 : "${CT_WORK_DIR:=${CT_TOP_DIR}/targets}"
    85 CT_TARBALLS_DIR="${CT_WORK_DIR}/tarballs"
    86 CT_SRC_DIR="${CT_WORK_DIR}/src"
    87 CT_BUILD_DIR="${CT_WORK_DIR}/${CT_TARGET}/build"
    88 CT_DEBUG_INSTALL_DIR="${CT_INSTALL_DIR}/${CT_TARGET}/debug-root"
    89 # Note: we'll always install the core compiler in its own directory, so as to
    90 # not mix the two builds: core and final.
    91 CT_CC_CORE_STATIC_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core-static"
    92 CT_CC_CORE_SHARED_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core-shared"
    93 CT_STATE_DIR="${CT_WORK_DIR}/${CT_TARGET}/state"
    94 
    95 # We must ensure that we can restart if asked for!
    96 if [ -n "${CT_RESTART}" -a ! -d "${CT_STATE_DIR}"  ]; then
    97     CT_DoLog ERROR "You asked to restart a non-restartable build"
    98     CT_DoLog ERROR "This happened because you didn't set CT_DEBUG_CT_SAVE_STEPS"
    99     CT_DoLog ERROR "in the config options for the previous build, or the state"
   100     CT_DoLog ERROR "directory for the previous build was deleted."
   101     CT_Abort "I will stop here to avoid any carnage"
   102 fi
   103 
   104 # Make all path absolute, it so much easier!
   105 CT_LOCAL_TARBALLS_DIR=$(CT_MakeAbsolutePath "${CT_LOCAL_TARBALLS_DIR}")
   106 
   107 # If the local tarball directory does not exist, say so, and don't try to save there!
   108 if [ ! -d "${CT_LOCAL_TARBALLS_DIR}" ]; then
   109     CT_DoLog WARN "Directory '${CT_LOCAL_TARBALLS_DIR}' does not exist. Will not save downloaded tarballs to local storage."
   110     CT_SAVE_TARBALLS=
   111 fi
   112 
   113 # Some more sanity checks now that we have all paths set up
   114 case "${CT_LOCAL_TARBALLS_DIR},${CT_TARBALLS_DIR},${CT_SRC_DIR},${CT_BUILD_DIR},${CT_PREFIX_DIR},${CT_INSTALL_DIR}" in
   115     *" "*) CT_Abort "Don't use spaces in paths, it breaks things.";;
   116 esac
   117 
   118 # Check now if we can write to the destination directory:
   119 if [ -d "${CT_INSTALL_DIR}" ]; then
   120     CT_TestAndAbort "Destination directory '${CT_INSTALL_DIR}' is not removable" ! -w $(dirname "${CT_INSTALL_DIR}")
   121 fi
   122 
   123 # Good, now grab a bit of informations on the system we're being run on,
   124 # just in case something goes awok, and it's not our fault:
   125 CT_SYS_USER=$(id -un)
   126 CT_SYS_HOSTNAME=$(hostname -f 2>/dev/null || true)
   127 # Hmmm. Some non-DHCP-enabled machines do not have an FQDN... Fall back to node name.
   128 CT_SYS_HOSTNAME="${CT_SYS_HOSTNAME:-$(uname -n)}"
   129 CT_SYS_KERNEL=$(uname -s)
   130 CT_SYS_REVISION=$(uname -r)
   131 # MacOS X lacks '-o' :
   132 CT_SYS_OS=$(uname -o || echo "Unknown (maybe MacOS-X)")
   133 CT_SYS_MACHINE=$(uname -m)
   134 CT_SYS_PROCESSOR=$(uname -p)
   135 CT_SYS_GCC=$(gcc -dumpversion)
   136 CT_SYS_TARGET=$(CT_DoConfigGuess)
   137 CT_TOOLCHAIN_ID="crosstool-${CT_VERSION} build ${CT_STAR_DATE_HUMAN} by ${CT_SYS_USER}@${CT_SYS_HOSTNAME}"
   138 
   139 CT_DoLog EXTRA "Preparing working directories"
   140 
   141 # Ah! The build directory shall be eradicated, even if we restart!
   142 if [ -d "${CT_BUILD_DIR}" ]; then
   143     mv "${CT_BUILD_DIR}" "${CT_BUILD_DIR}.$$"
   144     chmod -R u+w "${CT_BUILD_DIR}.$$"
   145     setsid nohup rm -rf "${CT_BUILD_DIR}.$$" >/dev/null 2>&1 &
   146 fi
   147 
   148 # Don't eradicate directories if we need to restart
   149 if [ -z "${CT_RESTART}" ]; then
   150     # Get rid of pre-existing installed toolchain and previous build directories.
   151     # We need to do that _before_ we can safely log, because the log file will
   152     # most probably be in the toolchain directory.
   153     if [ "${CT_FORCE_DOWNLOAD}" = "y" -a -d "${CT_TARBALLS_DIR}" ]; then
   154         mv "${CT_TARBALLS_DIR}" "${CT_TARBALLS_DIR}.$$"
   155         chmod -R u+w "${CT_TARBALLS_DIR}.$$"
   156         setsid nohup rm -rf "${CT_TARBALLS_DIR}.$$" >/dev/null 2>&1 &
   157     fi
   158     if [ "${CT_FORCE_EXTRACT}" = "y" -a -d "${CT_SRC_DIR}" ]; then
   159         mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.$$"
   160         chmod -R u+w "${CT_SRC_DIR}.$$"
   161         setsid nohup rm -rf "${CT_SRC_DIR}.$$" >/dev/null 2>&1 &
   162     fi
   163     if [ -d "${CT_INSTALL_DIR}" ]; then
   164         mv "${CT_INSTALL_DIR}" "${CT_INSTALL_DIR}.$$"
   165         chmod -R u+w "${CT_INSTALL_DIR}.$$"
   166         setsid nohup rm -rf "${CT_INSTALL_DIR}.$$" >/dev/null 2>&1 &
   167     fi
   168     if [ -d "${CT_DEBUG_INSTALL_DIR}" ]; then
   169         mv "${CT_DEBUG_INSTALL_DIR}" "${CT_DEBUG_INSTALL_DIR}.$$"
   170         chmod -R u+w "${CT_DEBUG_INSTALL_DIR}.$$"
   171         setsid nohup rm -rf "${CT_DEBUG_INSTALL_DIR}.$$" >/dev/null 2>&1 &
   172     fi
   173     # In case we start anew, get rid of the previously saved state directory
   174     if [ -d "${CT_STATE_DIR}" ]; then
   175         mv "${CT_STATE_DIR}" "${CT_STATE_DIR}.$$"
   176         chmod -R u+w "${CT_STATE_DIR}.$$"
   177         setsid nohup rm -rf "${CT_STATE_DIR}.$$" >/dev/null 2>&1 &
   178     fi
   179 fi
   180 
   181 # Create the directories we'll use, even if restarting: it does no harm to
   182 # create already existent directories, and CT_BUILD_DIR needs to be created
   183 # anyway
   184 mkdir -p "${CT_TARBALLS_DIR}"
   185 mkdir -p "${CT_SRC_DIR}"
   186 mkdir -p "${CT_BUILD_DIR}"
   187 mkdir -p "${CT_INSTALL_DIR}"
   188 mkdir -p "${CT_PREFIX_DIR}"
   189 mkdir -p "${CT_DEBUG_INSTALL_DIR}"
   190 mkdir -p "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   191 mkdir -p "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   192 mkdir -p "${CT_STATE_DIR}"
   193 
   194 # Kludge: CT_INSTALL_DIR and CT_PREFIX_DIR might have grown read-only if
   195 # the previous build was successful. To be able to move the logfile there,
   196 # switch them back to read/write
   197 chmod -R u+w "${CT_INSTALL_DIR}" "${CT_PREFIX_DIR}"
   198 
   199 # Redirect log to the actual log file now we can
   200 # It's quite understandable that the log file will be installed in the install
   201 # directory, so we must first ensure it exists and is writeable (above) before
   202 # we can log there
   203 exec >/dev/null
   204 case "${CT_LOG_TO_FILE}" in
   205     y)  CT_LOG_FILE="${CT_PREFIX_DIR}/build.log"
   206         cat "${tmp_log_file}" >>"${CT_LOG_FILE}"
   207         rm -f "${tmp_log_file}"
   208         exec >>"${CT_LOG_FILE}"
   209         ;;
   210     *)  rm -f "${tmp_log_file}"
   211         ;;
   212 esac
   213 
   214 # Set environment for proxy access
   215 # This has to be done even if we are restarting, as they don't get
   216 # saved in the step snapshot.
   217 case "${CT_PROXY_TYPE}" in
   218   none) ;;
   219   http)
   220     http_proxy="http://"
   221     case  "${CT_PROXY_USER}:${CT_PROXY_PASS}" in
   222       :)      ;;
   223       :*)     http_proxy="${http_proxy}:${CT_PROXY_PASS}@";;
   224       *:)     http_proxy="${http_proxy}${CT_PROXY_USER}@";;
   225       *:*)    http_proxy="${http_proxy}${CT_PROXY_USER}:${CT_PROXY_PASS}@";;
   226     esac
   227     export http_proxy="${http_proxy}${CT_PROXY_HOST}:${CT_PROXY_PORT}/"
   228     export https_proxy="${http_proxy}"
   229     export ftp_proxy="${http_proxy}"
   230     CT_DoLog DEBUG "http_proxy='${http_proxy}'"
   231     ;;
   232   sockssys)
   233     # Force not using HTTP proxy
   234     unset http_proxy ftp_proxy https_proxy
   235     CT_HasOrAbort tsocks
   236     . tsocks -on
   237     ;;
   238   socks*)
   239     # Force not using HTTP proxy
   240     unset http_proxy ftp_proxy https_proxy
   241     # Remove any lingering config file from any previous run
   242     rm -f "${CT_BUILD_DIR}/tsocks.conf"
   243     # Find all interfaces and build locally accessible networks
   244     server_ip=$(ping -c 1 -W 2 "${CT_PROXY_HOST}" |head -n 1 |sed -r -e 's/^[^\(]+\(([^\)]+)\).*$/\1/;' || true)
   245     CT_TestOrAbort "SOCKS proxy '${CT_PROXY_HOST}' has no IP." -n "${server_ip}"
   246     /sbin/ifconfig |awk -v server_ip="${server_ip}" '
   247       BEGIN {
   248         split( server_ip, tmp, "\\." );
   249         server_ip_num = tmp[1] * 2^24 + tmp[2] * 2^16 + tmp[3] * 2^8 + tmp[4] * 2^0;
   250         pairs = 0;
   251       }
   252 
   253       $0 ~ /^[[:space:]]*inet addr:/ {
   254         split( $2, tmp, ":|\\." );
   255         if( ( tmp[2] == 127 ) && ( tmp[3] == 0 ) && ( tmp[4] == 0 ) && ( tmp[5] == 1 ) ) {
   256           /* Skip 127.0.0.1, it'\''s taken care of by tsocks itself */
   257           next;
   258         }
   259         ip_num = tmp[2] * 2^24 + tmp[3] * 2^16 + tmp[4] * 2 ^8 + tmp[5] * 2^0;
   260         i = 32;
   261         do {
   262           i--;
   263           mask = 2^32 - 2^i;
   264         } while( (i!=0) && ( and( server_ip_num, mask ) == and( ip_num, mask ) ) );
   265         mask = and( 0xFFFFFFFF, lshift( mask, 1 ) );
   266         if( (i!=0) && (mask!=0) ) {
   267           masked_ip = and( ip_num, mask );
   268           for( i=0; i<pairs; i++ ) {
   269             if( ( masked_ip == ips[i] ) && ( mask == masks[i] ) ) {
   270               next;
   271             }
   272           }
   273           ips[pairs] = masked_ip;
   274           masks[pairs] = mask;
   275           pairs++;
   276           printf( "local = %d.%d.%d.%d/%d.%d.%d.%d\n",
   277                   and( 0xFF, masked_ip / 2^24 ),
   278                   and( 0xFF, masked_ip / 2^16 ),
   279                   and( 0xFF, masked_ip / 2^8 ),
   280                   and( 0xFF, masked_ip / 2^0 ),
   281                   and( 0xFF, mask / 2^24 ),
   282                   and( 0xFF, mask / 2^16 ),
   283                   and( 0xFF, mask / 2^8 ),
   284                   and( 0xFF, mask / 2^0 ) );
   285         }
   286       }
   287     ' >"${CT_BUILD_DIR}/tsocks.conf"
   288     ( echo "server = ${server_ip}";
   289       echo "server_port = ${CT_PROXY_PORT}";
   290       [ -n "${CT_PROXY_USER}"   ] && echo "default_user=${CT_PROXY_USER}";
   291       [ -n "${CT_PROXY_PASS}" ] && echo "default_pass=${CT_PROXY_PASS}";
   292     ) >>"${CT_BUILD_DIR}/tsocks.conf"
   293     case "${CT_PROXY_TYPE/socks}" in
   294       4|5) proxy_type="${CT_PROXY_TYPE/socks}";;
   295       auto)
   296         reply=$(inspectsocks "${server_ip}" "${CT_PROXY_PORT}" 2>&1 || true)
   297         case "${reply}" in
   298           *"server is a version 4 socks server") proxy_type=4;;
   299           *"server is a version 5 socks server") proxy_type=5;;
   300           *) CT_Abort "Unable to determine SOCKS proxy type for '${CT_PROXY_HOST}:${CT_PROXY_PORT}'"
   301         esac
   302       ;;
   303     esac
   304     echo "server_type = ${proxy_type}" >> "${CT_BUILD_DIR}/tsocks.conf"
   305     CT_HasOrAbort tsocks
   306     # If tsocks was found, then validateconf is present (distributed with tsocks).
   307     CT_DoExecLog DEBUG validateconf -f "${CT_BUILD_DIR}/tsocks.conf"
   308     export TSOCKS_CONF_FILE="${CT_BUILD_DIR}/tsocks.conf"
   309     . tsocks -on
   310     ;;
   311 esac
   312 
   313 # Setting up the rest of the environment only if not restarting
   314 if [ -z "${CT_RESTART}" ]; then
   315     # Determine build system if not set by the user
   316     CT_Test "You did not specify the build system. That's OK, I can guess..." -z "${CT_BUILD}"
   317     CT_BUILD="${CT_BUILD:-$(CT_DoConfigGuess)}"
   318     CT_BUILD=$(CT_DoConfigSub "${CT_BUILD}")
   319 
   320     # Arrange paths depending on wether we use sys-root or not.
   321     if [ "${CT_USE_SYSROOT}" = "y" ]; then
   322         CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}/sys-root"
   323         CT_HEADERS_DIR="${CT_SYSROOT_DIR}/usr/include"
   324         BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   325         CC_CORE_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   326         CC_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   327         LIBC_SYSROOT_ARG=""
   328         # glibc's prefix must be exactly /usr, else --with-sysroot'd gcc will get
   329         # confused when $sysroot/usr/include is not present.
   330         # Note: --prefix=/usr is magic!
   331         # See http://www.gnu.org/software/libc/FAQ.html#s-2.2
   332     else
   333         # plain old way. All libraries in prefix/target/lib
   334         CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}"
   335         CT_HEADERS_DIR="${CT_SYSROOT_DIR}/include"
   336         # hack!  Always use --with-sysroot for binutils.
   337         # binutils 2.14 and later obey it, older binutils ignore it.
   338         # Lets you build a working 32->64 bit cross gcc
   339         BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   340         # Use --with-headers, else final gcc will define disable_glibc while
   341         # building libgcc, and you'll have no profiling
   342         CC_CORE_SYSROOT_ARG="--without-headers"
   343         CC_SYSROOT_ARG="--with-headers=${CT_HEADERS_DIR}"
   344         LIBC_SYSROOT_ARG="prefix="
   345     fi
   346 
   347     # Prepare the 'lib' directories in sysroot, else the ../lib64 hack used by
   348     # 32 -> 64 bit crosscompilers won't work, and build of final gcc will fail with
   349     #  "ld: cannot open crti.o: No such file or directory"
   350     mkdir -p "${CT_SYSROOT_DIR}/lib"
   351     mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
   352 
   353     # Prevent gcc from installing its libraries outside of the sys-root
   354     ln -sf "sys-root/lib" "${CT_PREFIX_DIR}/${CT_TARGET}/lib"
   355 
   356     # Now, in case we're 64 bits, just have lib64/ be a symlink to lib/
   357     # so as to have all libraries in the same directory (we can do that
   358     # because we are *not* multilib).
   359     case "${CT_TARGET}" in
   360         powerpc64*|ppc64*|x86_64*)
   361             ln -sf "lib" "${CT_SYSROOT_DIR}/lib64"
   362             ln -sf "lib" "${CT_SYSROOT_DIR}/usr/lib64"
   363             ln -sf "sys-root/lib" "${CT_PREFIX_DIR}/${CT_TARGET}/lib64"
   364             ;;
   365     esac
   366 
   367     # Canadian-cross are really picky on the way they are built. Tweak the values.
   368     CT_UNIQ_BUILD=$(echo "${CT_BUILD}" |sed -r -e 's/-/-build_/')
   369     if [ "${CT_CANADIAN}" = "y" ]; then
   370         # Arrange so that gcc never, ever think that build system == host system
   371         CT_CANADIAN_OPT="--build=${CT_UNIQ_BUILD}"
   372         # We shall have a compiler for this target!
   373         # Do test here...
   374     else
   375         CT_HOST="${CT_BUILD}"
   376         CT_CANADIAN_OPT="--build=${CT_BUILD}"
   377         # Add the target toolchain in the path so that we can build the C library
   378         # Carefully add paths in the order we want them:
   379         #  - first try in ${CT_PREFIX_DIR}/bin
   380         #  - then try in ${CT_CC_CORE_SHARED_PREFIX_DIR}/bin
   381         #  - then try in ${CT_CC_CORE_STATIC_PREFIX_DIR}/bin
   382         #  - fall back to searching user's PATH
   383         export PATH="${CT_PREFIX_DIR}/bin:${CT_CC_CORE_SHARED_PREFIX_DIR}/bin:${CT_CC_CORE_STATIC_PREFIX_DIR}/bin:${PATH}"
   384     fi
   385 
   386     # Modify GCC_HOST to never be equal to $BUILD or $TARGET
   387     # This strange operation causes gcc to always generate a cross-compiler
   388     # even if the build machine is the same kind as the host.
   389     # This is why CC has to be set when doing a canadian cross; you can't find a
   390     # host compiler by appending -gcc to our whacky $GCC_HOST
   391     # Kludge: it is reported that the above causes canadian crosses with cygwin
   392     # hosts to fail, so avoid it just in that one case.  It would be cleaner to
   393     # just move this into the non-canadian case above, but I'm afraid that might
   394     # cause some configure script somewhere to decide that since build==host, they
   395     # could run host binaries.
   396     # (Copied almost as-is from original crosstool):
   397     case "${CT_KERNEL},${CT_CANADIAN}" in
   398         cygwin,y) ;;
   399         *,y)      CT_HOST=$(echo "${CT_HOST}" |sed -r -e 's/-/-host_/;');;
   400     esac
   401 
   402     # Ah! Recent versions of binutils need some of the build and/or host system
   403     # (read CT_BUILD and CT_HOST) tools to be accessible (ar is but an example).
   404     # Do that:
   405     CT_DoLog DEBUG "Making build system tools available"
   406     mkdir -p "${CT_PREFIX_DIR}/bin"
   407     for tool in ar as dlltool ${CT_CC_NATIVE:=gcc} gnatbind gnatmake ld nm ranlib strip windres objcopy objdump; do
   408         tmp=$(CT_Which ${tool})
   409         if [ -n "${tmp}" ]; then
   410             ln -sfv "${tmp}" "${CT_PREFIX_DIR}/bin/${CT_BUILD}-${tool}"
   411             ln -sfv "${tmp}" "${CT_PREFIX_DIR}/bin/${CT_UNIQ_BUILD}-${tool}"
   412             ln -sfv "${tmp}" "${CT_PREFIX_DIR}/bin/${CT_HOST}-${tool}"
   413         fi |CT_DoLog DEBUG
   414     done
   415 
   416     # Some makeinfo versions are a pain in [put your most sensible body part here].
   417     # Go ahead with those, by creating a wrapper that keeps partial files, and that
   418     # never fails:
   419     echo -e "#!/bin/sh\n$(CT_Which makeinfo) --force \"\${@}\"\ntrue" >"${CT_PREFIX_DIR}/bin/makeinfo"
   420     chmod 700 "${CT_PREFIX_DIR}/bin/makeinfo"
   421 
   422     # Help gcc
   423     CT_CFLAGS_FOR_HOST=
   424     [ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST="${CT_CFLAGS_FOR_HOST} -pipe"
   425 
   426     # Override the configured jobs with what's been given on the command line
   427     [ -n "${CT_JOBS}" ] && CT_PARALLEL_JOBS="${CT_JOBS}"
   428 
   429     # And help make go faster
   430     PARALLELMFLAGS=
   431     [ ${CT_PARALLEL_JOBS} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -j${CT_PARALLEL_JOBS}"
   432     [ ${CT_LOAD} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -l${CT_LOAD}"
   433     export PARALLELMFLAGS
   434 
   435     CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
   436     CT_DoLog EXTRA "Building a toolchain for:"
   437     CT_DoLog EXTRA "  build  = ${CT_BUILD}"
   438     CT_DoLog EXTRA "  host   = ${CT_HOST}"
   439     CT_DoLog EXTRA "  target = ${CT_TARGET}"
   440     set |egrep '^CT_.+=' |sort |CT_DoLog DEBUG
   441     CT_EndStep
   442 fi
   443 
   444 # Include sub-scripts instead of calling them: that way, we do not have to
   445 # export any variable, nor re-parse the configuration and functions files.
   446 . "${CT_LIB_DIR}/scripts/build/kernel_${CT_KERNEL}.sh"
   447 . "${CT_LIB_DIR}/scripts/build/gmp.sh"
   448 . "${CT_LIB_DIR}/scripts/build/mpfr.sh"
   449 . "${CT_LIB_DIR}/scripts/build/binutils.sh"
   450 . "${CT_LIB_DIR}/scripts/build/libc_${CT_LIBC}.sh"
   451 . "${CT_LIB_DIR}/scripts/build/cc_${CT_CC}.sh"
   452 . "${CT_LIB_DIR}/scripts/build/debug.sh"
   453 . "${CT_LIB_DIR}/scripts/build/tools.sh"
   454 
   455 if [ -z "${CT_RESTART}" ]; then
   456     CT_DoStep INFO "Retrieving needed toolchain components' tarballs"
   457     do_kernel_get
   458     do_gmp_get
   459     do_mpfr_get
   460     do_binutils_get
   461     do_cc_get
   462     do_libc_get
   463     do_tools_get
   464     do_debug_get
   465     CT_EndStep
   466 
   467     if [ "${CT_ONLY_DOWNLOAD}" != "y" ]; then
   468         if [ "${CT_FORCE_EXTRACT}" = "y" ]; then
   469             mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.force.$$"
   470             setsid nohup rm -rf "${CT_SRC_DIR}.force.$$" >/dev/null 2>&1
   471             mkdir -p "${CT_SRC_DIR}"
   472         fi
   473         CT_DoStep INFO "Extracting and patching toolchain components"
   474         do_kernel_extract
   475         do_gmp_extract
   476         do_mpfr_extract
   477         do_binutils_extract
   478         do_cc_extract
   479         do_libc_extract
   480         do_tools_extract
   481         do_debug_extract
   482         CT_EndStep
   483     fi
   484 fi
   485 
   486 # Now for the job by itself. Go have a coffee!
   487 if [ "${CT_ONLY_DOWNLOAD}" != "y" -a "${CT_ONLY_EXTRACT}" != "y" ]; then
   488     # Because of CT_RESTART, this becomes quite complex
   489     do_stop=0
   490     prev_step=
   491     [ -n "${CT_RESTART}" ] && do_it=0 || do_it=1
   492     # Aha! CT_STEPS comes from steps.mk!
   493     for step in ${CT_STEPS}; do
   494         if [ ${do_it} -eq 0 ]; then
   495             if [ "${CT_RESTART}" = "${step}" ]; then
   496                 CT_DoLoadState "${step}"
   497                 do_it=1
   498                 do_stop=0
   499             fi
   500         else
   501             CT_DoSaveState ${step}
   502             if [ ${do_stop} -eq 1 ]; then
   503                 CT_DoLog ERROR "Stopping just after step '${prev_step}', as requested."
   504                 exit 0
   505             fi
   506         fi
   507         if [ ${do_it} -eq 1 ]; then
   508             do_${step}
   509             if [ "${CT_STOP}" = "${step}" ]; then
   510                 do_stop=1
   511             fi
   512             if [ "${CT_DEBUG_PAUSE_STEPS}" = "y" ]; then
   513                 CT_DoPause "Step '${step}' finished"
   514             fi
   515         fi
   516         prev_step="${step}"
   517     done
   518 
   519     CT_DoLog DEBUG "Removing access to the build system tools"
   520     find "${CT_PREFIX_DIR}/bin" -name "${CT_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   521     find "${CT_PREFIX_DIR}/bin" -name "${CT_UNIQ_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   522     find "${CT_PREFIX_DIR}/bin" -name "${CT_HOST}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   523     rm -fv "${CT_PREFIX_DIR}/bin/makeinfo" |CT_DoLog DEBUG
   524 
   525     # Install the /populator/
   526     CT_DoLog EXTRA "Installing the populate helper"
   527     sed -r -e 's,@@CT_READELF@@,'"${CT_PREFIX_DIR}/bin/${CT_TARGET}-readelf"',g;'   \
   528            -e 's,@@CT_SYSROOT_DIR@@,'"${CT_SYSROOT_DIR}"',g;'                       \
   529            "${CT_LIB_DIR}/tools/populate.in" >"${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   530     chmod 755 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   531 
   532     # Create the aliases to the target tools
   533     CT_DoStep EXTRA "Creating toolchain aliases"
   534     CT_Pushd "${CT_PREFIX_DIR}/bin"
   535     for t in "${CT_TARGET}-"*; do
   536         if [ -n "${CT_TARGET_ALIAS}" ]; then
   537             _t=$(echo "$t" |sed -r -e 's/^'"${CT_TARGET}"'-/'"${CT_TARGET_ALIAS}"'-/;')
   538             CT_DoLog DEBUG "Linking '${_t}' -> '${t}'"
   539             ln -sv "${t}" "${_t}" 2>&1 |CT_DoLog ALL
   540         fi
   541         if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
   542             _t=$(echo "$t" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
   543             CT_DoLog DEBUG "Linking '${_t}' -> '${t}'"
   544             ln -sv "${t}" "${_t}" 2>&1 |CT_DoLog ALL
   545         fi
   546     done
   547     CT_Popd
   548     CT_EndStep
   549 
   550     # Remove the generated documentation files
   551     if [ "${CT_REMOVE_DOCS}" = "y" ]; then
   552     	CT_DoLog INFO "Removing installed documentation"
   553         rm -rf "${CT_PREFIX_DIR}/"{,usr/}{man,info}
   554         rm -rf "${CT_SYSROOT_DIR}/"{,usr/}{man,info}
   555         rm -rf "${CT_DEBUG_INSTALL_DIR}/"{,usr/}{man,info}
   556     fi
   557 fi
   558 
   559 CT_DoEnd INFO
   560 
   561 if [ "${CT_LOG_FILE_COMPRESS}" = y ]; then
   562     CT_DoLog EXTRA "Compressing log file"
   563     exec >/dev/null
   564     bzip2 -9 "${CT_LOG_FILE}"
   565 fi
   566 
   567 if [ "${CT_INSTALL_DIR_RO}" = "y" ]; then
   568     # OK, now we're done, set the toolchain read-only
   569     # Don't log, the log file may become read-only any moment...
   570     chmod -R a-w "${CT_INSTALL_DIR}" >/dev/null 2>&1
   571 fi
   572 
   573 trap - EXIT