scripts/functions
author Anthony Foiani <anthony.foiani@gmail.com>
Fri Oct 22 22:02:57 2010 +0200 (2010-10-22)
changeset 2154 250cdcc86441
parent 2130 b46ecc90d3ab
child 2155 5374ab57d331
permissions -rw-r--r--
scripts: add "FILE" and "CFG" debug levels.

I ran into some minor difficulties looking through the build log for a
particular file: I wasn't interested in seeing it unpacked, but only
when it is built or installed. Adding these two levels allows me to
differentiate between those cases.

[Yann E. MORIN: Those are blind log levels, and are used only to search
in the build-log afterward.]

Signed-off-by: Anthony Foiani <anthony.foiani@gmail.com>
     1 # This file contains some usefull common functions
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 # Prepare the fault handler
     6 CT_OnError() {
     7     ret=$?
     8     # Bail out early in subshell, the upper level shell will act accordingly.
     9     [ ${BASH_SUBSHELL} -eq 0 ] || exit $ret
    10     CT_DoLog ERROR "Build failed in step '${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}'"
    11     for((step=(CT_STEP_COUNT-1); step>1; step--)); do
    12         CT_DoLog ERROR "      called in step '${CT_STEP_MESSAGE[${step}]}'"
    13     done
    14     CT_DoLog ERROR "Error happened in '${BASH_SOURCE[1]}' in function '${FUNCNAME[1]}' (line unknown, sorry)"
    15     for((depth=2; ${BASH_LINENO[$((${depth}-1))]}>0; depth++)); do
    16         CT_DoLog ERROR "      called from '${BASH_SOURCE[${depth}]}' at line # ${BASH_LINENO[${depth}-1]} in function '${FUNCNAME[${depth}]}'"
    17     done
    18     [ "${CT_LOG_TO_FILE}" = "y" ] && CT_DoLog ERROR "Look at '${CT_LOG_FILE}' for more info on this error."
    19     CT_STEP_COUNT=1
    20     CT_DoEnd ERROR
    21     exit $ret
    22 }
    23 
    24 # Install the fault handler
    25 trap CT_OnError ERR
    26 
    27 # Inherit the fault handler in subshells and functions
    28 set -E
    29 
    30 # Make pipes fail on the _first_ failed command
    31 # Not supported on bash < 3.x, but we need it, so drop the obsoleting bash-2.x
    32 set -o pipefail
    33 
    34 # Don't hash commands' locations, and search every time it is requested.
    35 # This is slow, but needed because of the static/shared core gcc which shall
    36 # always match to shared if it exists, and only fallback to static if the
    37 # shared is not found
    38 set +o hashall
    39 
    40 # Log policy:
    41 #  - first of all, save stdout so we can see the live logs: fd #6
    42 exec 6>&1
    43 #  - then point stdout to the log file (temporary for now)
    44 tmp_log_file="${CT_TOP_DIR}/log.$$"
    45 exec >>"${tmp_log_file}"
    46 
    47 # The different log levels:
    48 CT_LOG_LEVEL_ERROR=0
    49 CT_LOG_LEVEL_WARN=1
    50 CT_LOG_LEVEL_INFO=2
    51 CT_LOG_LEVEL_EXTRA=3
    52 CT_LOG_LEVEL_CFG=4
    53 CT_LOG_LEVEL_FILE=5
    54 CT_LOG_LEVEL_ALL=6
    55 CT_LOG_LEVEL_DEBUG=7
    56 
    57 # Make it easy to use \n and !
    58 CR=$(printf "\n")
    59 BANG='!'
    60 
    61 # A function to log what is happening
    62 # Different log level are available:
    63 #   - ERROR:   A serious, fatal error occurred
    64 #   - WARN:    A non fatal, non serious error occurred, take your responsbility with the generated build
    65 #   - INFO:    Informational messages
    66 #   - EXTRA:   Extra informational messages
    67 #   - DEBUG:   Debug messages
    68 #   - CFG:     Output of various "./configure"-type scripts
    69 #   - FILE:    File / archive unpacking.
    70 #   - ALL:     Component's build messages
    71 # Usage: CT_DoLog <level> [message]
    72 # If message is empty, then stdin will be logged.
    73 CT_DoLog() {
    74     local max_level LEVEL level cur_l cur_L
    75     local l
    76     eval max_level="\${CT_LOG_LEVEL_${CT_LOG_LEVEL_MAX}}"
    77     # Set the maximum log level to DEBUG if we have none
    78     [ -z "${max_level}" ] && max_level=${CT_LOG_LEVEL_DEBUG}
    79 
    80     LEVEL="$1"; shift
    81     eval level="\${CT_LOG_LEVEL_${LEVEL}}"
    82 
    83     if [ $# -eq 0 ]; then
    84         cat -
    85     else
    86         printf "%s\n" "${*}"
    87     fi |( IFS="${CR}" # We want the full lines, even leading spaces
    88           _prog_bar_cpt=0
    89           _prog_bar[0]='/'
    90           _prog_bar[1]='-'
    91           _prog_bar[2]='\'
    92           _prog_bar[3]='|'
    93           indent=$((2*CT_STEP_COUNT))
    94           while read line; do
    95               case "${CT_LOG_SEE_TOOLS_WARN},${line}" in
    96                 y,*"warning:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    97                 y,*"WARNING:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    98                 *"error:"*)             cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
    99                 *"make["*"]: *** ["*)   cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
   100                 *)                      cur_L="${LEVEL}"; cur_l="${level}";;
   101               esac
   102               # There will always be a log file (stdout, fd #1), be it /dev/null
   103               printf "[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}"
   104               if [ ${cur_l} -le ${max_level} ]; then
   105                   # Only print to console (fd #6) if log level is high enough.
   106                   printf "\r[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}" >&6
   107               fi
   108               if [ "${CT_LOG_PROGRESS_BAR}" = "y" ]; then
   109                   printf "\r[%02d:%02d] %s " $((SECONDS/60)) $((SECONDS%60)) "${_prog_bar[$((_prog_bar_cpt/10))]}" >&6
   110                   _prog_bar_cpt=$(((_prog_bar_cpt+1)%40))
   111               fi
   112           done
   113         )
   114 
   115     return 0
   116 }
   117 
   118 # Execute an action, and log its messages
   119 # Usage: [VAR=val...] CT_DoExecLog <level> <command [parameters...]>
   120 CT_DoExecLog() {
   121     local level="$1"
   122     shift
   123     CT_DoLog DEBUG "==> Executing: '${*}'"
   124     "${@}" 2>&1 |CT_DoLog "${level}"
   125 }
   126 
   127 # Tail message to be logged whatever happens
   128 # Usage: CT_DoEnd <level>
   129 CT_DoEnd()
   130 {
   131     local level="$1"
   132     CT_STOP_DATE=$(CT_DoDate +%s%N)
   133     CT_STOP_DATE_HUMAN=$(CT_DoDate +%Y%m%d.%H%M%S)
   134     if [ "${level}" != "ERROR" ]; then
   135         CT_DoLog "${level:-INFO}" "Build completed at ${CT_STOP_DATE_HUMAN}"
   136     fi
   137     elapsed=$((CT_STOP_DATE-CT_STAR_DATE))
   138     elapsed_min=$((elapsed/(60*1000*1000*1000)))
   139     elapsed_sec=$(printf "%02d" $(((elapsed%(60*1000*1000*1000))/(1000*1000*1000))))
   140     elapsed_csec=$(printf "%02d" $(((elapsed%(1000*1000*1000))/(10*1000*1000))))
   141     CT_DoLog ${level:-INFO} "(elapsed: ${elapsed_min}:${elapsed_sec}.${elapsed_csec})"
   142 }
   143 
   144 # Remove entries referring to . and other relative paths
   145 # Usage: CT_SanitizePath
   146 CT_SanitizePath() {
   147     local new
   148     local p
   149     local IFS=:
   150     for p in $PATH; do
   151         # Only accept absolute paths;
   152         # Note: as a special case the empty string in PATH is equivalent to .
   153         if [ -n "${p}" -a -z "${p%%/*}" ]; then
   154             new="${new}${new:+:}${p}"
   155         fi
   156     done
   157     PATH="${new}"
   158 }
   159 
   160 # Abort the execution with an error message
   161 # Usage: CT_Abort <message>
   162 CT_Abort() {
   163     CT_DoLog ERROR "$1"
   164     exit 1
   165 }
   166 
   167 # Test a condition, and print a message if satisfied
   168 # Usage: CT_Test <message> <tests>
   169 CT_Test() {
   170     local ret
   171     local m="$1"
   172     shift
   173     CT_DoLog DEBUG "Testing '! ( $* )'"
   174     test "$@" && CT_DoLog WARN "$m"
   175     return 0
   176 }
   177 
   178 # Test a condition, and abort with an error message if satisfied
   179 # Usage: CT_TestAndAbort <message> <tests>
   180 CT_TestAndAbort() {
   181     local m="$1"
   182     shift
   183     CT_DoLog DEBUG "Testing '! ( $* )'"
   184     test "$@" && CT_Abort "$m"
   185     return 0
   186 }
   187 
   188 # Test a condition, and abort with an error message if not satisfied
   189 # Usage: CT_TestAndAbort <message> <tests>
   190 CT_TestOrAbort() {
   191     local m="$1"
   192     shift
   193     CT_DoLog DEBUG "Testing '$*'"
   194     test "$@" || CT_Abort "$m"
   195     return 0
   196 }
   197 
   198 # Test the presence of a tool, or abort if not found
   199 # Usage: CT_HasOrAbort <tool>
   200 CT_HasOrAbort() {
   201     CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z "$(CT_Which "${1}")"
   202     return 0
   203 }
   204 
   205 # Search a program: wrap "which" for those system where
   206 # "which" verbosely says there is no match (Mandriva is
   207 # such a sucker...)
   208 # Usage: CT_Which <filename>
   209 CT_Which() {
   210   which "$1" 2>/dev/null || true
   211 }
   212 
   213 # Get current date with nanosecond precision
   214 # On those system not supporting nanosecond precision, faked with rounding down
   215 # to the highest entire second
   216 # Usage: CT_DoDate <fmt>
   217 CT_DoDate() {
   218     date "$1" |sed -r -e 's/N$/000000000/;'
   219 }
   220 
   221 CT_STEP_COUNT=1
   222 CT_STEP_MESSAGE[${CT_STEP_COUNT}]="<none>"
   223 # Memorise a step being done so that any error is caught
   224 # Usage: CT_DoStep <loglevel> <message>
   225 CT_DoStep() {
   226     local start=$(CT_DoDate +%s%N)
   227     CT_DoLog "$1" "================================================================="
   228     CT_DoLog "$1" "$2"
   229     CT_STEP_COUNT=$((CT_STEP_COUNT+1))
   230     CT_STEP_LEVEL[${CT_STEP_COUNT}]="$1"; shift
   231     CT_STEP_START[${CT_STEP_COUNT}]="${start}"
   232     CT_STEP_MESSAGE[${CT_STEP_COUNT}]="$1"
   233     return 0
   234 }
   235 
   236 # End the step just being done
   237 # Usage: CT_EndStep
   238 CT_EndStep() {
   239     local stop=$(CT_DoDate +%s%N)
   240     local duration=$(printf "%032d" $((stop-${CT_STEP_START[${CT_STEP_COUNT}]})) |sed -r -e 's/([[:digit:]]{2})[[:digit:]]{7}$/\.\1/; s/^0+//; s/^\./0\./;')
   241     local elapsed=$(printf "%02d:%02d" $((SECONDS/60)) $((SECONDS%60)))
   242     local level="${CT_STEP_LEVEL[${CT_STEP_COUNT}]}"
   243     local message="${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}"
   244     CT_STEP_COUNT=$((CT_STEP_COUNT-1))
   245     CT_DoLog "${level}" "${message}: done in ${duration}s (at ${elapsed})"
   246     return 0
   247 }
   248 
   249 # Pushes into a directory, and pops back
   250 CT_Pushd() {
   251     pushd "$1" >/dev/null 2>&1
   252 }
   253 CT_Popd() {
   254     popd >/dev/null 2>&1
   255 }
   256 
   257 # Creates a temporary directory
   258 # $1: variable to assign to
   259 # Usage: CT_MktempDir foo
   260 CT_MktempDir() {
   261     # Some mktemp do not allow more than 6 Xs
   262     eval "$1"=$(mktemp -q -d "${CT_BUILD_DIR}/tmp.XXXXXX")
   263     CT_TestOrAbort "Could not make temporary directory" -n "${!1}" -a -d "${!1}"
   264     CT_DoLog DEBUG "Made temporary directory '${!1}'"
   265     return 0
   266 }
   267 
   268 # Removes one or more directories, even if it is read-only, or its parent is
   269 # Usage: CT_DoForceRmdir dir [...]
   270 CT_DoForceRmdir() {
   271     local dir
   272     local mode
   273     for dir in "${@}"; do
   274         [ -d "${dir}" ] || continue
   275         case "$CT_SYS_OS" in
   276             Linux|CYGWIN*)
   277                 mode="$(stat -c '%a' "$(dirname "${dir}")")"
   278                 ;;
   279             Darwin|*BSD)
   280                 mode="$(stat -f '%Lp' "$(dirname "${dir}")")"
   281                 ;;
   282             *)
   283                 CT_Abort "Unhandled host OS $CT_SYS_OS"
   284                 ;;
   285         esac
   286         CT_DoExecLog ALL chmod u+w "$(dirname "${dir}")"
   287         CT_DoExecLog ALL chmod -R u+w "${dir}"
   288         CT_DoExecLog ALL rm -rf "${dir}"
   289         CT_DoExecLog ALL chmod ${mode} "$(dirname "${dir}")"
   290     done
   291 }
   292 
   293 # Echoes the specified string on stdout until the pipe breaks.
   294 # Doesn't fail
   295 # $1: string to echo
   296 # Usage: CT_DoYes "" |make oldconfig
   297 CT_DoYes() {
   298     yes "$1" || true
   299 }
   300 
   301 # Add the specified directory to LD_LIBRARY_PATH, and export it
   302 # If the specified patch is already present, just export
   303 # $1: path to add
   304 # $2: add as 'first' or 'last' path, 'first' is assumed if $2 is empty
   305 # Usage CT_SetLibPath /some/where/lib [first|last]
   306 CT_SetLibPath() {
   307     local path="$1"
   308     local pos="$2"
   309 
   310     case ":${LD_LIBRARY_PATH}:" in
   311         *:"${path}":*)  ;;
   312         *)  case "${pos}" in
   313                 last)
   314                     CT_DoLog DEBUG "Adding '${path}' at end of LD_LIBRARY_PATH"
   315                     LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${path}"
   316                     ;;
   317                 first|"")
   318                     CT_DoLog DEBUG "Adding '${path}' at start of LD_LIBRARY_PATH"
   319                     LD_LIBRARY_PATH="${path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
   320                     ;;
   321                 *)
   322                     CT_Abort "Incorrect position '${pos}' to add '${path}' to LD_LIBRARY_PATH"
   323                     ;;
   324             esac
   325             ;;
   326     esac
   327     CT_DoLog DEBUG "==> LD_LIBRARY_PATH='${LD_LIBRARY_PATH}'"
   328     export LD_LIBRARY_PATH
   329 }
   330 
   331 # Get the file name extension of a component
   332 # Usage: CT_GetFileExtension <component_name-component_version> [extension]
   333 # If found, echoes the extension to stdout, and return 0
   334 # If not found, echoes nothing on stdout, and return !0.
   335 CT_GetFileExtension() {
   336     local ext
   337     local file="$1"
   338     shift
   339     local first_ext="$1"
   340 
   341     # we need to also check for an empty extension for those very
   342     # peculiar components that don't have one (such as sstrip from
   343     # buildroot).
   344     for ext in ${first_ext} .tar.gz .tar.bz2 .tgz .tar /.git ''; do
   345         if [ -e "${CT_TARBALLS_DIR}/${file}${ext}" ]; then
   346             echo "${ext}"
   347             exit 0
   348         fi
   349     done
   350 
   351     exit 1
   352 }
   353 
   354 # Download an URL using wget
   355 # Usage: CT_DoGetFileWget <URL>
   356 CT_DoGetFileWget() {
   357     # Need to return true because it is legitimate to not find the tarball at
   358     # some of the provided URLs (think about snapshots, different layouts for
   359     # different gcc versions, etc...)
   360     # Some (very old!) FTP server might not support the passive mode, thus
   361     # retry without
   362     # With automated download as we are doing, it can be very dangerous to use
   363     # -c to continue the downloads. It's far better to simply overwrite the
   364     # destination file
   365     # Some company networks have firewalls to connect to the internet, but it's
   366     # not easy to detect them, and wget does not timeout by default while
   367     # connecting, so force a global ${CT_CONNECT_TIMEOUT}-second timeout.
   368     CT_DoExecLog ALL wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 --passive-ftp "$1"    \
   369     || CT_DoExecLog ALL wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 "$1"               \
   370     || rm -f "${1##*/}"
   371 }
   372 
   373 # Download an URL using curl
   374 # Usage: CT_DoGetFileCurl <URL>
   375 CT_DoGetFileCurl() {
   376     # Note: comments about wget method (above) are also valid here
   377     # Plus: no good progress indicator is available with curl,
   378     #       so, be silent.
   379     CT_DoExecLog ALL curl -s --ftp-pasv -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} -L -f  \
   380     || CT_DoExecLog ALL curl -s -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} -L -f          \
   381     || rm -f "${1##*/}"
   382 }
   383 
   384 # Download using aria2
   385 # Usage: CT_DoGetFileAria2 <URL>
   386 CT_DoGetFileAria2() {
   387     # Note: comments about curl method (above) are also valid here
   388     # Plus: default progress indicator is a single line, so use verbose log
   389     #       so that the CT-NG's ouput is 'live'.
   390     CT_DoExecLog ALL aria2c --summary-interval=1 -s ${CT_DOWNLOAD_MAX_CHUNKS} -m 3 -t ${CT_CONNECT_TIMEOUT} -p "$1" \
   391     || CT_DoExecLog ALL aria2c --summary-interval=1 -s ${CT_DOWNLOAD_MAX_CHUNKS} -m 3 -t ${CT_CONNECT_TIMEOUT} "$1" \
   392     || rm -f "${1##*/}"
   393 }
   394 
   395 # OK, just look if we have them...
   396 _aria2c=$(CT_Which aria2c)
   397 _wget=$(CT_Which wget)
   398 _curl=$(CT_Which curl)
   399 
   400 # Wrapper function to call one of, in order of preference:
   401 #   aria2
   402 #   curl
   403 #   wget
   404 # Usage: CT_DoGetFile <URL>
   405 CT_DoGetFile() {
   406     if   [ -n "${_aria2c}" -a ${CT_DOWNLOAD_MAX_CHUNKS} -gt 1 ]; then
   407         CT_DoGetFileAria2 "$1"
   408     elif [ -n "${_curl}" ]; then
   409         CT_DoGetFileCurl "$1"
   410     elif [ -n "${_wget}" ]; then
   411         CT_DoGetFileWget "$1"
   412     else
   413         CT_Abort "Could find neither wget nor curl"
   414     fi
   415 }
   416 
   417 # This function tries to retrieve a tarball form a local directory
   418 # Usage: CT_GetLocal <basename> [.extension]
   419 CT_GetLocal() {
   420     local basename="$1"
   421     local first_ext="$2"
   422     local ext
   423 
   424     # Do we already have it in *our* tarballs dir?
   425     if ext="$( CT_GetFileExtension "${basename}" ${first_ext} )"; then
   426         CT_DoLog DEBUG "Already have '${basename}'"
   427         return 0
   428     fi
   429 
   430     if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then
   431         CT_DoLog DEBUG "Trying to retrieve an already downloaded copy of '${basename}'"
   432         # We'd rather have a bzip2'ed tarball, then gzipped tarball, plain tarball,
   433         # or, as a failover, a file without extension.
   434         for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   435             CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}'"
   436             if [ -r "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" -a \
   437                  "${CT_FORCE_DOWNLOAD}" != "y" ]; then
   438                 CT_DoLog DEBUG "Got '${basename}' from local storage"
   439                 CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" "${CT_TARBALLS_DIR}/${basename}${ext}"
   440                 return 0
   441             fi
   442         done
   443     fi
   444     return 1
   445 }
   446 
   447 # This function saves the specified to local storage if possible,
   448 # and if so, symlinks it for later usage
   449 # Usage: CT_SaveLocal </full/path/file.name>
   450 CT_SaveLocal() {
   451     local file="$1"
   452     local basename="${file##*/}"
   453 
   454     if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   455         CT_DoLog EXTRA "Saving '${basename}' to local storage"
   456         # The file may already exist if downloads are forced: remove it first
   457         CT_DoExecLog ALL rm -f "${CT_LOCAL_TARBALLS_DIR}/${basename}"
   458         CT_DoExecLog ALL mv -f "${file}" "${CT_LOCAL_TARBALLS_DIR}"
   459         CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}" "${file}"
   460     fi
   461 }
   462 
   463 # Download the file from one of the URLs passed as argument
   464 # Usage: CT_GetFile <basename> [.extension] <url> [url ...]
   465 CT_GetFile() {
   466     local ext
   467     local url URLS LAN_URLS
   468     local file="$1"
   469     local first_ext
   470     shift
   471     # If next argument starts with a dot, then this is not an URL,
   472     # and we can consider that it is a preferred extension.
   473     case "$1" in
   474         .*) first_ext="$1"
   475             shift
   476             ;;
   477     esac
   478 
   479     # Does it exist localy?
   480     CT_GetLocal "${file}" ${first_ext} && return 0 || true
   481     # No, it does not...
   482 
   483     # Try to retrieve the file
   484     CT_DoLog EXTRA "Retrieving '${file}'"
   485     CT_Pushd "${CT_TARBALLS_DIR}"
   486 
   487     URLS="$@"
   488 
   489     # Add URLs on the LAN mirror
   490     LAN_URLS=
   491     if [ "${CT_USE_MIRROR}" = "y" ]; then
   492         CT_TestOrAbort "Please set the mirror base URL" -n "${CT_MIRROR_BASE_URL}"
   493         LAN_URLS="${LAN_URLS} ${CT_MIRROR_BASE_URL}/${file%-*}"
   494         LAN_URLS="${LAN_URLS} ${CT_MIRROR_BASE_URL}"
   495 
   496         if [ "${CT_PREFER_MIRROR}" = "y" ]; then
   497             CT_DoLog DEBUG "Pre-pending LAN mirror URLs"
   498             URLS="${LAN_URLS} ${URLS}"
   499         else
   500             CT_DoLog DEBUG "Appending LAN mirror URLs"
   501             URLS="${URLS} ${LAN_URLS}"
   502         fi
   503     fi
   504 
   505     # Scan all URLs in turn, and try to grab a tarball from there
   506     # Do *not* try git trees (ext=/.git), this is handled in a specific
   507     # wrapper, below
   508     for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   509         # Try all urls in turn
   510         for url in ${URLS}; do
   511             CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   512             CT_DoGetFile "${url}/${file}${ext}"
   513             if [ -f "${file}${ext}" ]; then
   514                 CT_DoLog DEBUG "Got '${file}' from the Internet"
   515                 CT_SaveLocal "${CT_TARBALLS_DIR}/${file}${ext}"
   516                 return 0
   517             fi
   518         done
   519     done
   520     CT_Popd
   521 
   522     CT_Abort "Could not retrieve '${file}'."
   523 }
   524 
   525 # Checkout from CVS, and build the associated tarball
   526 # The tarball will be called ${basename}.tar.bz2
   527 # Prerequisite: either the server does not require password,
   528 # or the user must already be logged in.
   529 # 'tag' is the tag to retrieve. Must be specified, but can be empty.
   530 # If dirname is specified, then module will be renamed to dirname
   531 # prior to building the tarball.
   532 # Usage: CT_GetCVS <basename> <url> <module> <tag> [dirname[=subdir]]
   533 # Note: if '=subdir' is given, then it is used instead of 'module'.
   534 CT_GetCVS() {
   535     local basename="$1"
   536     local uri="$2"
   537     local module="$3"
   538     local tag="${4:+-r ${4}}"
   539     local dirname="$5"
   540     local tmp_dir
   541 
   542     # Does it exist localy?
   543     CT_GetLocal "${basename}" && return 0 || true
   544     # No, it does not...
   545 
   546     CT_DoLog EXTRA "Retrieving '${basename}'"
   547 
   548     CT_MktempDir tmp_dir
   549     CT_Pushd "${tmp_dir}"
   550 
   551     CT_DoExecLog ALL cvs -z 9 -d "${uri}" co -P ${tag} "${module}"
   552     if [ -n "${dirname}" ]; then
   553         case "${dirname}" in
   554             *=*)
   555                 CT_DoExecLog DEBUG mv "${dirname#*=}" "${dirname%%=*}"
   556                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname%%=*}"
   557                 ;;
   558             *)
   559                 CT_DoExecLog ALL mv "${module}" "${dirname}"
   560                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname:-${module}}"
   561                 ;;
   562         esac
   563     fi
   564     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   565 
   566     CT_Popd
   567     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   568 }
   569 
   570 # Check out from SVN, and build the associated tarball
   571 # The tarball will be called ${basename}.tar.bz2
   572 # Prerequisite: either the server does not require password,
   573 # or the user must already be logged in.
   574 # 'rev' is the revision to retrieve
   575 # Usage: CT_GetSVN <basename> <url> [rev]
   576 CT_GetSVN() {
   577     local basename="$1"
   578     local uri="$2"
   579     local rev="$3"
   580 
   581     # Does it exist localy?
   582     CT_GetLocal "${basename}" && return 0 || true
   583     # No, it does not...
   584 
   585     CT_DoLog EXTRA "Retrieving '${basename}'"
   586 
   587     CT_MktempDir tmp_dir
   588     CT_Pushd "${tmp_dir}"
   589 
   590     CT_DoExecLog ALL svn export ${rev:+-r ${rev}} "${uri}" "${basename}"
   591     CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${basename}"
   592     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   593 
   594     CT_Popd
   595     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   596 }
   597 
   598 # Clone a git tree
   599 # Tries the given URLs in turn until one can get cloned. No tarball will be created.
   600 # Prerequisites: either the server does not require password,
   601 # or the user has already taken any action to authenticate to the server.
   602 # The cloned tree will *not* be stored in the local tarballs dir!
   603 # Usage: CT_GetGit <basename> <url [url ...]>
   604 CT_GetGit() {
   605     local basename="$1"; shift
   606     local url
   607     local cloned=0
   608 
   609     # Do we have it in our tarballs dir?
   610     if [ -d "${CT_TARBALLS_DIR}/${basename}/.git" ]; then
   611         CT_DoLog EXTRA "Updating git tree '${basename}'"
   612         CT_Pushd "${CT_TARBALLS_DIR}/${basename}"
   613         CT_DoExecLog ALL git pull
   614         CT_Popd
   615     else
   616         CT_DoLog EXTRA "Retrieving git tree '${basename}'"
   617         for url in "${@}"; do
   618             CT_DoLog ALL "Trying to clone from '${url}'"
   619             CT_DoForceRmdir "${CT_TARBALLS_DIR}/${basename}"
   620             if git clone "${url}" "${CT_TARBALLS_DIR}/${basename}" 2>&1 |CT_DoLog ALL; then
   621                 cloned=1
   622                 break
   623             fi
   624         done
   625         CT_TestOrAbort "Could not clone '${basename}'" ${cloned} -ne 0
   626     fi
   627 }
   628 
   629 # Extract a tarball
   630 # Some tarballs need to be extracted in specific places. Eg.: glibc addons
   631 # must be extracted in the glibc directory; uCLibc locales must be extracted
   632 # in the extra/locale sub-directory of uClibc. This is taken into account
   633 # by the caller, that did a 'cd' into the correct path before calling us
   634 # and sets nochdir to 'nochdir'.
   635 # Note also that this function handles the git trees!
   636 # Usage: CT_Extract <basename> [nochdir] [options]
   637 # where 'options' are dependent on the source (eg. git branch/tag...)
   638 CT_Extract() {
   639     local nochdir="$1"
   640     local basename
   641     local ext
   642 
   643     if [ "${nochdir}" = "nochdir" ]; then
   644         shift
   645         nochdir="$(pwd)"
   646     else
   647         nochdir="${CT_SRC_DIR}"
   648     fi
   649 
   650     basename="$1"
   651     shift
   652 
   653     if ! ext="$(CT_GetFileExtension "${basename}")"; then
   654       CT_Abort "'${basename}' not found in '${CT_TARBALLS_DIR}'"
   655     fi
   656     local full_file="${CT_TARBALLS_DIR}/${basename}${ext}"
   657 
   658     # Check if already extracted
   659     if [ -e "${CT_SRC_DIR}/.${basename}.extracted" ]; then
   660         CT_DoLog DEBUG "Already extracted '${basename}'"
   661         return 0
   662     fi
   663 
   664     # Check if previously partially extracted
   665     if [ -e "${CT_SRC_DIR}/.${basename}.extracting" ]; then
   666         CT_DoLog ERROR "The '${basename}' sources were partially extracted."
   667         CT_DoLog ERROR "Please remove first:"
   668         CT_DoLog ERROR " - the source dir for '${basename}', in '${CT_SRC_DIR}'"
   669         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${basename}.extracting'"
   670         CT_Abort "I'll stop now to avoid any carnage..."
   671     fi
   672     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracting"
   673 
   674     CT_Pushd "${nochdir}"
   675 
   676     CT_DoLog EXTRA "Extracting '${basename}'"
   677     case "${ext}" in
   678         .tar.bz2)     CT_DoExecLog FILE tar xvjf "${full_file}";;
   679         .tar.gz|.tgz) CT_DoExecLog FILE tar xvzf "${full_file}";;
   680         .tar)         CT_DoExecLog FILE tar xvf  "${full_file}";;
   681         /.git)        CT_ExtractGit "${basename}" "${@}";;
   682         *)            CT_Abort "Don't know how to handle '${basename}${ext}': unknown extension";;
   683     esac
   684 
   685     # Some tarballs have read-only files... :-(
   686     # Because of nochdir, we don't know where we are, so chmod all
   687     # the src tree
   688     CT_DoExecLog DEBUG chmod -R u+w "${CT_SRC_DIR}"
   689 
   690     # Don't mark as being extracted for git
   691     case "${ext}" in
   692         /.git)  ;;
   693         *)      CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracted";;
   694     esac
   695     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${basename}.extracting"
   696 
   697     CT_Popd
   698 }
   699 
   700 # Create a working git clone
   701 # Usage: CT_ExtractGit <basename> [ref]
   702 # where 'ref' is the reference to use:
   703 #   the full name of a branch, like "remotes/origin/branch_name"
   704 #   a date as understandable by git, like "YYYY-MM-DD[ hh[:mm[:ss]]]"
   705 #   a tag name
   706 CT_ExtractGit() {
   707     local basename="${1}"
   708     local ref="${2}"
   709     local clone_dir
   710     local ref_type
   711 
   712     # pushd now to be able to get git revlist in case ref is a date
   713     clone_dir="${CT_TARBALLS_DIR}/${basename}"
   714     CT_Pushd "${clone_dir}"
   715 
   716     # What kind of reference is ${ref} ?
   717     if [ -z "${ref}" ]; then
   718         # Don't update the clone, keep as-is
   719         ref_type=none
   720     elif git tag |grep -E "^${ref}$" >/dev/null 2>&1; then
   721         ref_type=tag
   722     elif git branch -a --no-color |grep -E "^. ${ref}$" >/dev/null 2>&1; then
   723         ref_type=branch
   724     elif date -d "${ref}" >/dev/null 2>&1; then
   725         ref_type=date
   726         ref=$(git rev-list -n1 --before="${ref}")
   727     else
   728         CT_Abort "Reference '${ref}' is an incorrect git reference: neither tag, branch nor date"
   729     fi
   730 
   731     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/${basename}"
   732     CT_DoExecLog ALL ln -sf "${clone_dir}" "${CT_SRC_DIR}/${basename}"
   733 
   734     case "${ref_type}" in
   735         none)   ;;
   736         *)      CT_DoExecLog FILE git checkout "${ref}";;
   737     esac
   738 
   739     CT_Popd
   740 }
   741 
   742 # Patches the specified component
   743 # See CT_Extract, above, for explanations on 'nochdir'
   744 # Usage: CT_Patch [nochdir] <packagename> <packageversion>
   745 # If the package directory is *not* packagename-packageversion, then
   746 # the caller must cd into the proper directory first, and call us
   747 # with nochdir
   748 CT_Patch() {
   749     local nochdir="$1"
   750     local pkgname
   751     local version
   752     local pkgdir
   753     local base_file
   754     local ver_file
   755     local d
   756     local -a patch_dirs
   757     local bundled_patch_dir
   758     local local_patch_dir
   759 
   760     if [ "${nochdir}" = "nochdir" ]; then
   761         shift
   762         pkgname="$1"
   763         version="$2"
   764         pkgdir="${pkgname}-${version}"
   765         nochdir="$(pwd)"
   766     else
   767         pkgname="$1"
   768         version="$2"
   769         pkgdir="${pkgname}-${version}"
   770         nochdir="${CT_SRC_DIR}/${pkgdir}"
   771     fi
   772 
   773     # Check if already patched
   774     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patched" ]; then
   775         CT_DoLog DEBUG "Already patched '${pkgdir}'"
   776         return 0
   777     fi
   778 
   779     # Check if already partially patched
   780     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patching" ]; then
   781         CT_DoLog ERROR "The '${pkgdir}' sources were partially patched."
   782         CT_DoLog ERROR "Please remove first:"
   783         CT_DoLog ERROR " - the source dir for '${pkgdir}', in '${CT_SRC_DIR}'"
   784         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.extracted'"
   785         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.patching'"
   786         CT_Abort "I'll stop now to avoid any carnage..."
   787     fi
   788     touch "${CT_SRC_DIR}/.${pkgdir}.patching"
   789 
   790     CT_Pushd "${nochdir}"
   791 
   792     CT_DoLog EXTRA "Patching '${pkgdir}'"
   793 
   794     bundled_patch_dir="${CT_LIB_DIR}/patches/${pkgname}/${version}"
   795     local_patch_dir="${CT_LOCAL_PATCH_DIR}/${pkgname}/${version}"
   796 
   797     case "${CT_PATCH_ORDER}" in
   798         bundled)        patch_dirs=("${bundled_patch_dir}");;
   799         local)          patch_dirs=("${local_patch_dir}");;
   800         bundled,local)  patch_dirs=("${bundled_patch_dir}" "${local_patch_dir}");;
   801         local,bundled)  patch_dirs=("${local_patch_dir}" "${bundled_patch_dir}");;
   802         none)           patch_dirs=;;
   803     esac
   804 
   805     for d in "${patch_dirs[@]}"; do
   806         CT_DoLog DEBUG "Looking for patches in '${d}'..."
   807         if [ -n "${d}" -a -d "${d}" ]; then
   808             for p in "${d}"/*.patch; do
   809                 if [ -f "${p}" ]; then
   810                     CT_DoLog DEBUG "Applying patch '${p}'"
   811                     CT_DoExecLog ALL patch --no-backup-if-mismatch -g0 -F1 -p1 -f <"${p}"
   812                 fi
   813             done
   814             if [ "${CT_PATCH_SINGLE}" = "y" ]; then
   815                 break
   816             fi
   817         fi
   818     done
   819 
   820     if [ "${CT_OVERIDE_CONFIG_GUESS_SUB}" = "y" ]; then
   821         CT_DoLog ALL "Overiding config.guess and config.sub"
   822         for cfg in config_guess config_sub; do
   823             eval ${cfg}="${CT_LIB_DIR}/scripts/${cfg/_/.}"
   824             [ -e "${CT_TOP_DIR}/scripts/${cfg/_/.}" ] && eval ${cfg}="${CT_TOP_DIR}/scripts/${cfg/_/.}"
   825             # Can't use CT_DoExecLog because of the '{} \;' to be passed un-mangled to find
   826             find . -type f -name "${cfg/_/.}" -exec cp -v "${!cfg}" {} \; |CT_DoLog ALL
   827         done
   828     fi
   829 
   830     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${pkgdir}.patched"
   831     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${pkgdir}.patching"
   832 
   833     CT_Popd
   834 }
   835 
   836 # Two wrappers to call config.(guess|sub) either from CT_TOP_DIR or CT_LIB_DIR.
   837 # Those from CT_TOP_DIR, if they exist, will be be more recent than those from CT_LIB_DIR.
   838 CT_DoConfigGuess() {
   839     if [ -x "${CT_TOP_DIR}/scripts/config.guess" ]; then
   840         "${CT_TOP_DIR}/scripts/config.guess"
   841     else
   842         "${CT_LIB_DIR}/scripts/config.guess"
   843     fi
   844 }
   845 
   846 CT_DoConfigSub() {
   847     if [ -x "${CT_TOP_DIR}/scripts/config.sub" ]; then
   848         "${CT_TOP_DIR}/scripts/config.sub" "$@"
   849     else
   850         "${CT_LIB_DIR}/scripts/config.sub" "$@"
   851     fi
   852 }
   853 
   854 # Compute the target tuple from what is provided by the user
   855 # Usage: CT_DoBuildTargetTuple
   856 # In fact this function takes the environment variables to build the target
   857 # tuple. It is needed both by the normal build sequence, as well as the
   858 # sample saving sequence.
   859 CT_DoBuildTargetTuple() {
   860     # Set the endianness suffix, and the default endianness gcc option
   861     case "${CT_ARCH_BE},${CT_ARCH_LE}" in
   862         y,) target_endian_eb=eb
   863             target_endian_el=
   864             CT_ARCH_ENDIAN_CFLAG="-mbig-endian"
   865             CT_ARCH_ENDIAN_LDFLAG="-EB"
   866             ;;
   867         ,y) target_endian_eb=
   868             target_endian_el=el
   869             CT_ARCH_ENDIAN_CFLAG="-mlittle-endian"
   870             CT_ARCH_ENDIAN_LDFLAG="-EL"
   871             ;;
   872     esac
   873 
   874     # Build the default architecture tuple part
   875     CT_TARGET_ARCH="${CT_ARCH}"
   876 
   877     # Set defaults for the system part of the tuple. Can be overriden
   878     # by architecture-specific values.
   879     case "${CT_LIBC}" in
   880         *glibc) CT_TARGET_SYS=gnu;;
   881         uClibc) CT_TARGET_SYS=uclibc;;
   882         *)      CT_TARGET_SYS=elf;;
   883     esac
   884 
   885     # Set the default values for ARCH, ABI, CPU, TUNE, FPU and FLOAT
   886     unset CT_ARCH_ARCH_CFLAG CT_ARCH_ABI_CFLAG CT_ARCH_CPU_CFLAG CT_ARCH_TUNE_CFLAG CT_ARCH_FPU_CFLAG CT_ARCH_FLOAT_CFLAG
   887     unset CT_ARCH_WITH_ARCH CT_ARCH_WITH_ABI CT_ARCH_WITH_CPU CT_ARCH_WITH_TUNE CT_ARCH_WITH_FPU CT_ARCH_WITH_FLOAT
   888     [ "${CT_ARCH_ARCH}"     ] && { CT_ARCH_ARCH_CFLAG="-march=${CT_ARCH_ARCH}";  CT_ARCH_WITH_ARCH="--with-arch=${CT_ARCH_ARCH}"; }
   889     [ "${CT_ARCH_ABI}"      ] && { CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_ABI}";     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_ABI}";    }
   890     [ "${CT_ARCH_CPU}"      ] && { CT_ARCH_CPU_CFLAG="-mcpu=${CT_ARCH_CPU}";     CT_ARCH_WITH_CPU="--with-cpu=${CT_ARCH_CPU}";    }
   891     [ "${CT_ARCH_TUNE}"     ] && { CT_ARCH_TUNE_CFLAG="-mtune=${CT_ARCH_TUNE}";  CT_ARCH_WITH_TUNE="--with-tune=${CT_ARCH_TUNE}"; }
   892     [ "${CT_ARCH_FPU}"      ] && { CT_ARCH_FPU_CFLAG="-mfpu=${CT_ARCH_FPU}";     CT_ARCH_WITH_FPU="--with-fpu=${CT_ARCH_FPU}";    }
   893     [ "${CT_ARCH_FLOAT_SW}" ] && { CT_ARCH_FLOAT_CFLAG="-msoft-float";           CT_ARCH_WITH_FLOAT="--with-float=soft";          }
   894 
   895     # Build the default kernel tuple part
   896     CT_TARGET_KERNEL="${CT_KERNEL}"
   897 
   898     # Overide the default values with the components specific settings
   899     CT_DoArchTupleValues
   900     CT_DoKernelTupleValues
   901 
   902     # Finish the target tuple construction
   903     CT_TARGET="${CT_TARGET_ARCH}"
   904     CT_TARGET="${CT_TARGET}${CT_TARGET_VENDOR:+-${CT_TARGET_VENDOR}}"
   905     CT_TARGET="${CT_TARGET}${CT_TARGET_KERNEL:+-${CT_TARGET_KERNEL}}"
   906     CT_TARGET="${CT_TARGET}${CT_TARGET_SYS:+-${CT_TARGET_SYS}}"
   907 
   908     # Sanity checks
   909     __sed_alias=""
   910     if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
   911         __sed_alias=$(echo "${CT_TARGET}" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
   912     fi
   913     case ":${CT_TARGET_VENDOR}:${CT_TARGET_ALIAS}:${__sed_alias}:" in
   914       :*" "*:*:*:) CT_Abort "Don't use spaces in the vendor string, it breaks things.";;
   915       :*"-"*:*:*:) CT_Abort "Don't use dashes in the vendor string, it breaks things.";;
   916       :*:*" "*:*:) CT_Abort "Don't use spaces in the target alias, it breaks things.";;
   917       :*:*:*" "*:) CT_Abort "Don't use spaces in the target sed transform, it breaks things.";;
   918     esac
   919 
   920     # Canonicalise it
   921     CT_TARGET=$(CT_DoConfigSub "${CT_TARGET}")
   922     # Prepare the target CFLAGS
   923     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ENDIAN_CFLAG}"
   924     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ARCH_CFLAG}"
   925     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ABI_CFLAG}"
   926     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_CPU_CFLAG}"
   927     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_TUNE_CFLAG}"
   928     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FPU_CFLAG}"
   929     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FLOAT_CFLAG}"
   930 
   931     # Now on for the target LDFLAGS
   932     CT_ARCH_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_ARCH_ENDIAN_LDFLAG}"
   933 }
   934 
   935 # This function does pause the build until the user strikes "Return"
   936 # Usage: CT_DoPause [optional_message]
   937 CT_DoPause() {
   938     local foo
   939     local message="${1:-Pausing for your pleasure}"
   940     CT_DoLog INFO "${message}"
   941     read -p "Press 'Enter' to continue, or Ctrl-C to stop..." foo >&6
   942     return 0
   943 }
   944 
   945 # This function creates a tarball of the specified directory, but
   946 # only if it exists
   947 # Usage: CT_DoTarballIfExists <dir> <tarball_basename> [extra_tar_options [...]]
   948 CT_DoTarballIfExists() {
   949     local dir="$1"
   950     local tarball="$2"
   951     shift 2
   952     local -a extra_tar_opts=( "$@" )
   953     local -a compress
   954 
   955     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   956         y)  compress=( gzip -c -3 - ); tar_ext=.gz;;
   957         *)  compress=( cat - );        tar_ext=;;
   958     esac
   959 
   960     if [ -d "${dir}" ]; then
   961         CT_DoLog DEBUG "  Saving '${dir}'"
   962         { tar c -C "${dir}" -v -f - "${extra_tar_opts[@]}" .    \
   963           |"${compress[@]}" >"${tarball}.tar${tar_ext}"         ;
   964         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog DEBUG
   965     else
   966         CT_DoLog DEBUG "  Not saving '${dir}': does not exist"
   967     fi
   968 }
   969 
   970 # This function extracts a tarball to the specified directory, but
   971 # only if the tarball exists
   972 # Usage: CT_DoTarballIfExists <tarball_basename> <dir> [extra_tar_options [...]]
   973 CT_DoExtractTarballIfExists() {
   974     local tarball="$1"
   975     local dir="$2"
   976     shift 2
   977     local -a extra_tar_opts=( "$@" )
   978     local -a uncompress
   979 
   980     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   981         y)  uncompress=( gzip -c -d ); tar_ext=.gz;;
   982         *)  uncompress=( cat );        tar_ext=;;
   983     esac
   984 
   985     if [ -f "${tarball}.tar${tar_ext}" ]; then
   986         CT_DoLog DEBUG "  Restoring '${dir}'"
   987         CT_DoForceRmdir "${dir}"
   988         CT_DoExecLog DEBUG mkdir -p "${dir}"
   989         { "${uncompress[@]}" "${tarball}.tar${tar_ext}"     \
   990           |tar x -C "${dir}" -v -f - "${extra_tar_opts[@]}" ;
   991         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog DEBUG
   992     else
   993         CT_DoLog DEBUG "  Not restoring '${dir}': does not exist"
   994     fi
   995 }
   996 
   997 # This function saves the state of the toolchain to be able to restart
   998 # at any one point
   999 # Usage: CT_DoSaveState <next_step_name>
  1000 CT_DoSaveState() {
  1001 	[ "${CT_DEBUG_CT_SAVE_STEPS}" = "y" ] || return 0
  1002     local state_name="$1"
  1003     local state_dir="${CT_STATE_DIR}/${state_name}"
  1004 
  1005     # Log this to the log level required by the user
  1006     CT_DoLog ${CT_LOG_LEVEL_MAX} "Saving state to restart at step '${state_name}'..."
  1007 
  1008     rm -rf "${state_dir}"
  1009     mkdir -p "${state_dir}"
  1010 
  1011     CT_DoLog DEBUG "  Saving environment and aliases"
  1012     # We must omit shell functions, and some specific bash variables
  1013     # that break when restoring the environment, later. We could do
  1014     # all the processing in the awk script, but a sed is easier...
  1015     set |awk '
  1016               BEGIN { _p = 1; }
  1017               $0~/^[^ ]+ \(\)/ { _p = 0; }
  1018               _p == 1
  1019               $0 == "}" { _p = 1; }
  1020               ' |sed -r -e '/^BASH_(ARGC|ARGV|LINENO|SOURCE|VERSINFO)=/d;
  1021                            /^(UID|EUID)=/d;
  1022                            /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh"
  1023 
  1024     if [ "${CT_COMPLIBS_BACKUP}" = "y" ]; then
  1025         CT_DoTarballIfExists "${CT_COMPLIBS_DIR}" "${state_dir}/complibs_dir"
  1026     fi
  1027     CT_DoTarballIfExists "${CT_CONFIG_DIR}" "${state_dir}/config_dir"
  1028     CT_DoTarballIfExists "${CT_CC_CORE_STATIC_PREFIX_DIR}" "${state_dir}/cc_core_static_prefix_dir"
  1029     CT_DoTarballIfExists "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${state_dir}/cc_core_shared_prefix_dir"
  1030     CT_DoTarballIfExists "${CT_PREFIX_DIR}" "${state_dir}/prefix_dir" --exclude '*.log'
  1031 
  1032     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
  1033         CT_DoLog DEBUG "  Saving log file"
  1034         exec >/dev/null
  1035         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1036             y)  gzip -3 -c "${CT_LOG_FILE}"  >"${state_dir}/log.gz";;
  1037             *)  cat "${CT_LOG_FILE}" >"${state_dir}/log";;
  1038         esac
  1039         exec >>"${CT_LOG_FILE}"
  1040     fi
  1041 }
  1042 
  1043 # This function restores a previously saved state
  1044 # Usage: CT_DoLoadState <state_name>
  1045 CT_DoLoadState(){
  1046     local state_name="$1"
  1047     local state_dir="${CT_STATE_DIR}/${state_name}"
  1048     local old_RESTART="${CT_RESTART}"
  1049     local old_STOP="${CT_STOP}"
  1050 
  1051     CT_TestOrAbort "The previous build did not reach the point where it could be restarted at '${CT_RESTART}'" -d "${state_dir}"
  1052 
  1053     # We need to do something special with the log file!
  1054     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
  1055         exec >"${state_dir}/tail.log"
  1056     fi
  1057 
  1058     # Log this to the log level required by the user
  1059     CT_DoLog ${CT_LOG_LEVEL_MAX} "Restoring state at step '${state_name}', as requested."
  1060 
  1061     CT_DoExtractTarballIfExists "${state_dir}/prefix_dir" "${CT_PREFIX_DIR}"
  1062     CT_DoExtractTarballIfExists "${state_dir}/cc_core_shared_prefix_dir" "${CT_CC_CORE_SHARED_PREFIX_DIR}"
  1063     CT_DoExtractTarballIfExists "${state_dir}/cc_core_static_prefix_dir" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
  1064     CT_DoExtractTarballIfExists "${state_dir}/config_dir" "${CT_CONFIG_DIR}"
  1065     if [ "${CT_COMPLIBS_BACKUP}" = "y" ]; then
  1066         CT_DoExtractTarballIfExists "${state_dir}/complibs_dir" "${CT_COMPLIBS_DIR}"
  1067     fi
  1068 
  1069     # Restore the environment, discarding any error message
  1070     # (for example, read-only bash internals)
  1071     CT_DoLog DEBUG "  Restoring environment"
  1072     . "${state_dir}/env.sh" >/dev/null 2>&1 || true
  1073 
  1074     # Restore the new RESTART and STOP steps
  1075     CT_RESTART="${old_RESTART}"
  1076     CT_STOP="${old_STOP}"
  1077     unset old_stop old_restart
  1078 
  1079     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
  1080         CT_DoLog DEBUG "  Restoring log file"
  1081         exec >/dev/null
  1082         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1083             y)  zcat "${state_dir}/log.gz" >"${CT_LOG_FILE}";;
  1084             *)  cat "${state_dir}/log" >"${CT_LOG_FILE}";;
  1085         esac
  1086         cat "${state_dir}/tail.log" >>"${CT_LOG_FILE}"
  1087         exec >>"${CT_LOG_FILE}"
  1088         rm -f "${state_dir}/tail.log"
  1089     fi
  1090 }