scripts/functions
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:47:16 2010 +0200 (2010-07-29)
changeset 2045 fdaa6c7f6dea
parent 2029 93f7e40dacdf
child 2051 57cda75fd174
permissions -rw-r--r--
cc/gcc: add option to compile against static libstdc++, for gcc-4.4 and newer

Idea and know-how taken from CodeSourcery build script.

Normal build:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb77f3000)
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0xb76e8000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb75a1000)
libm.so.6 => /lib/i686/cmov/libm.so.6 (0xb757a000)
/lib/ld-linux.so.2 (0xb77f4000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb755c000)

CC_STATIC_LIBSTDCXX=y:
$ ldd arm-unknown-linux-uclibcgnueabi-gcc
linux-gate.so.1 => (0xb7843000)
libc.so.6 => /lib/i686/cmov/libc.so.6 (0xb76e6000)
/lib/ld-linux.so.2 (0xb7844000)

I made CC_STATIC_LIBSTDCXX default=y since I think
it is always desirable.

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