scripts/functions
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Sep 09 15:34:04 2011 +0200 (2011-09-09)
changeset 2660 2a44af825e60
parent 2646 e5078db4bd2c
child 2661 95ad28b9dea6
permissions -rw-r--r--
scripts/functions: only use one download program

Currently, we use either wget or curl, whichever is installed.
In case both are installed, both are used. This means that it
takes a while trying all extensions.

Remove use of wget, and use only curl.

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