scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jun 19 22:02:17 2008 +0000 (2008-06-19)
branch1.1
changeset 587 c27787270792
parent 507 f4145eeecb1d
permissions -rwxr-xr-x
Backport #698 from trunk:
Workaround makeinfo being picky at its input (we don't need documentation, do we?)

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