scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 17 11:30:36 2008 +0000 (2008-06-17)
changeset 568 e2549c563fde
parent 564 30fbb26a83b4
child 610 254083a796a8
permissions -rwxr-xr-x
Help glibc build by exporting PARALLELMFLAGS.

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