scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Jul 16 21:57:12 2008 +0000 (2008-07-16)
changeset 672 889b448303ae
parent 610 254083a796a8
child 678 d5fa60201dcb
permissions -rwxr-xr-x
Move the check for tsocks' availability just before using tsocks: make it clear we check before we use.
Use CT_DoExecLog to validate tsocks configuration.
Don't use gawk, but awk. awk *is* GNU awk, check by ./configure.

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