scripts/functions
author Johannes Stezenbach <js@sig21.net>
Sun Oct 14 23:46:15 2012 +0000 (2012-10-14)
changeset 3082 39ec9e913d79
parent 3075 aadd4647dd91
child 3083 3a7b2eee9dcd
permissions -rw-r--r--
scripts: move backtrace marker to CT_WORK_DIR

Avoid error when commands in scripts/crosstool-NG.sh fail
before CT_BUILD_DIR is set.

So we need to remove the backtrace marker of a potential previous
build. Previously, it was implicitly removed because we did remove
the directory it was in, which is no longer the case.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
[yann.morin.1998@free.fr: remove backtrace marker on start of build]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <20121015094615.GA18673@sig21.net>
Patchwork-Id: 191498
     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 line func
    10     local step step_depth
    11 
    12     # To avoid printing the backtace for each sub-shell
    13     # up to the top-level, just remember we've dumped it
    14     if [ ! -f "${CT_WORK_DIR}/backtrace" ]; then
    15         touch "${CT_WORK_DIR}/backtrace"
    16 
    17         # Print steps backtrace
    18         step_depth=${CT_STEP_COUNT}
    19         CT_STEP_COUNT=1     # To have a zero-indentation
    20         CT_DoLog ERROR ""
    21         CT_DoLog ERROR ">>"
    22         intro="Build failed"
    23         for((step=step_depth; step>0; step--)); do
    24             CT_DoLog ERROR ">>  ${intro} in step '${CT_STEP_MESSAGE[${step}]}'"
    25             intro="      called"
    26         done
    27 
    28         # Print functions backtrace
    29         intro="Error happened in"
    30         CT_DoLog ERROR ">>"
    31         for((depth=1; ${BASH_LINENO[$((${depth}-1))]}>0; depth++)); do
    32             file="${BASH_SOURCE[${depth}]#${CT_LIB_DIR}/}"
    33             func="${FUNCNAME[${depth}]}"
    34             line="@${BASH_LINENO[${depth}-1]:-?}"
    35             CT_DoLog ERROR ">>  ${intro}: ${func}[${file}${line}]"
    36             intro="      called from"
    37         done
    38     fi
    39 
    40     # And finally, in top-level shell, print some hints
    41     if [ ${BASH_SUBSHELL} -eq 0 ]; then
    42         # Help diagnose the error
    43         CT_STEP_COUNT=1     # To have a zero-indentation
    44         CT_DoLog ERROR ">>"
    45         if [ "${CT_LOG_TO_FILE}" = "y" ]; then
    46             CT_DoLog ERROR ">>  For more info on this error, look at the file: '${tmp_log_file#${CT_TOP_DIR}/}'"
    47         fi
    48         CT_DoLog ERROR ">>  There is a list of known issues, some with workarounds, in:"
    49         CT_DoLog ERROR ">>      '${CT_DOC_DIR#${CT_TOP_DIR}/}/B - Known issues.txt'"
    50 
    51         CT_DoLog ERROR ""
    52         CT_DoEnd ERROR
    53         rm -f "${CT_WORK_DIR}/backtrace"
    54     fi
    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 "which"
   275 # verbosely says there is no match (such as on Mandriva).
   276 # Usage: CT_Which <filename>
   277 CT_Which() {
   278   which "$1" 2>/dev/null || true
   279 }
   280 
   281 # Get current date with nanosecond precision
   282 # On those system not supporting nanosecond precision, faked with rounding down
   283 # to the highest entire second
   284 # Usage: CT_DoDate <fmt>
   285 CT_DoDate() {
   286     date "$1" |sed -r -e 's/%?N$/000000000/;'
   287 }
   288 
   289 CT_STEP_COUNT=1
   290 CT_STEP_MESSAGE[${CT_STEP_COUNT}]="(top-level)"
   291 # Memorise a step being done so that any error is caught
   292 # Usage: CT_DoStep <loglevel> <message>
   293 CT_DoStep() {
   294     local start=$(CT_DoDate +%s%N)
   295     CT_DoLog "$1" "================================================================="
   296     CT_DoLog "$1" "$2"
   297     CT_STEP_COUNT=$((CT_STEP_COUNT+1))
   298     CT_STEP_LEVEL[${CT_STEP_COUNT}]="$1"; shift
   299     CT_STEP_START[${CT_STEP_COUNT}]="${start}"
   300     CT_STEP_MESSAGE[${CT_STEP_COUNT}]="$1"
   301     return 0
   302 }
   303 
   304 # End the step just being done
   305 # Usage: CT_EndStep
   306 CT_EndStep() {
   307     local stop=$(CT_DoDate +%s%N)
   308     local duration=$(printf "%032d" $((stop-${CT_STEP_START[${CT_STEP_COUNT}]})) |sed -r -e 's/([[:digit:]]{2})[[:digit:]]{7}$/\.\1/; s/^0+//; s/^\./0\./;')
   309     local elapsed=$(printf "%02d:%02d" $((SECONDS/60)) $((SECONDS%60)))
   310     local level="${CT_STEP_LEVEL[${CT_STEP_COUNT}]}"
   311     local message="${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}"
   312     CT_STEP_COUNT=$((CT_STEP_COUNT-1))
   313     CT_DoLog "${level}" "${message}: done in ${duration}s (at ${elapsed})"
   314     return 0
   315 }
   316 
   317 # Pushes into a directory, and pops back
   318 CT_Pushd() {
   319     pushd "$1" >/dev/null 2>&1
   320 }
   321 CT_Popd() {
   322     popd >/dev/null 2>&1
   323 }
   324 
   325 # Create a dir and cd or pushd into it
   326 # Usage: CT_mkdir_cd <dir/to/create>
   327 #        CT_mkdir_pushd <dir/to/create>
   328 CT_mkdir_cd() {
   329     local dir="${1}"
   330 
   331     mkdir -p "${dir}"
   332     cd "${dir}"
   333 }
   334 CT_mkdir_pushd() {
   335     local dir="${1}"
   336 
   337     mkdir -p "${dir}"
   338     CT_Pushd "${dir}"
   339 }
   340 
   341 # Creates a temporary directory
   342 # $1: variable to assign to
   343 # Usage: CT_MktempDir foo
   344 CT_MktempDir() {
   345     # Some mktemp do not allow more than 6 Xs
   346     eval "$1"=$(mktemp -q -d "${CT_BUILD_DIR}/tmp.XXXXXX")
   347     CT_TestOrAbort "Could not make temporary directory" -n "${!1}" -a -d "${!1}"
   348     CT_DoLog DEBUG "Made temporary directory '${!1}'"
   349     return 0
   350 }
   351 
   352 # Removes one or more directories, even if it is read-only, or its parent is
   353 # Usage: CT_DoForceRmdir dir [...]
   354 CT_DoForceRmdir() {
   355     local dir
   356     local mode
   357     for dir in "${@}"; do
   358         [ -d "${dir}" ] || continue
   359         case "$CT_SYS_OS" in
   360             Linux|CYGWIN*)
   361                 mode="$(stat -c '%a' "$(dirname "${dir}")")"
   362                 ;;
   363             Darwin|*BSD)
   364                 mode="$(stat -f '%Lp' "$(dirname "${dir}")")"
   365                 ;;
   366             *)
   367                 CT_Abort "Unhandled host OS $CT_SYS_OS"
   368                 ;;
   369         esac
   370         CT_DoExecLog ALL chmod u+w "$(dirname "${dir}")"
   371         CT_DoExecLog ALL chmod -R u+w "${dir}"
   372         CT_DoExecLog ALL rm -rf "${dir}"
   373         CT_DoExecLog ALL chmod ${mode} "$(dirname "${dir}")"
   374     done
   375 }
   376 
   377 # Echoes the specified string on stdout until the pipe breaks.
   378 # Doesn't fail
   379 # $1: string to echo
   380 # Usage: CT_DoYes "" |make oldconfig
   381 CT_DoYes() {
   382     yes "$1" || true
   383 }
   384 
   385 # Add the specified directory to LD_LIBRARY_PATH, and export it
   386 # If the specified patch is already present, just export
   387 # $1: path to add
   388 # $2: add as 'first' or 'last' path, 'first' is assumed if $2 is empty
   389 # Usage CT_SetLibPath /some/where/lib [first|last]
   390 CT_SetLibPath() {
   391     local path="$1"
   392     local pos="$2"
   393 
   394     case ":${LD_LIBRARY_PATH}:" in
   395         *:"${path}":*)  ;;
   396         *)  case "${pos}" in
   397                 last)
   398                     CT_DoLog DEBUG "Adding '${path}' at end of LD_LIBRARY_PATH"
   399                     LD_LIBRARY_PATH="${LD_LIBRARY_PATH:+${LD_LIBRARY_PATH}:}${path}"
   400                     ;;
   401                 first|"")
   402                     CT_DoLog DEBUG "Adding '${path}' at start of LD_LIBRARY_PATH"
   403                     LD_LIBRARY_PATH="${path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
   404                     ;;
   405                 *)
   406                     CT_Abort "Incorrect position '${pos}' to add '${path}' to LD_LIBRARY_PATH"
   407                     ;;
   408             esac
   409             ;;
   410     esac
   411     CT_DoLog DEBUG "==> LD_LIBRARY_PATH='${LD_LIBRARY_PATH}'"
   412     export LD_LIBRARY_PATH
   413 }
   414 
   415 # Build up the list of allowed tarball extensions
   416 # Add them in the prefered order; most preferred comes first
   417 CT_DoListTarballExt() {
   418     if [ "${CT_CONFIGURE_has_xz}" = "y" ]; then
   419         printf ".tar.xz\n"
   420     fi
   421     if [    "${CT_CONFIGURE_has_lzma}" = "y"    \
   422          -o "${CT_CONFIGURE_has_xz}" = "y" ]; then
   423         printf ".tar.lzma\n"
   424     fi
   425     printf ".tar.bz2\n"
   426     printf ".tar.gz\n.tgz\n"
   427     printf ".tar\n"
   428 }
   429 
   430 # Get the file name extension of a component
   431 # Usage: CT_GetFileExtension <component_name-component_version> [extension]
   432 # If found, echoes the extension to stdout, and return 0
   433 # If not found, echoes nothing on stdout, and return !0.
   434 CT_GetFileExtension() {
   435     local ext
   436     local file="$1"
   437     shift
   438     local first_ext="$1"
   439 
   440     # we need to also check for an empty extension for those very
   441     # peculiar components that don't have one (such as sstrip from
   442     # buildroot).
   443     for ext in ${first_ext} $(CT_DoListTarballExt) /.git ''; do
   444         if [ -e "${CT_TARBALLS_DIR}/${file}${ext}" ]; then
   445             echo "${ext}"
   446             exit 0
   447         fi
   448     done
   449 
   450     exit 1
   451 }
   452 
   453 # Try to retrieve the specified URL (HTTP or FTP)
   454 # Usage: CT_DoGetFile <URL>
   455 # This functions always returns true (0), as it can be legitimate not
   456 # to find the requested URL (think about snapshots, different layouts
   457 # for different gcc versions, etc...).
   458 CT_DoGetFile() {
   459     local url="${1}"
   460     local dest="${CT_TARBALLS_DIR}/${url##*/}"
   461     local tmp="${dest}.tmp-dl"
   462 
   463     # Remove potential left-over from a previous run
   464     rm -f "${tmp}"
   465 
   466     # We also retry a few times, in case there is a transient error (eg. behind
   467     # a dynamic IP that changes during the transfer...)
   468     # With automated download as we are doing, it can be very dangerous to
   469     # continue the downloads. It's far better to simply overwrite the
   470     # destination file.
   471     # Some company networks have firewalls to connect to the internet, but it's
   472     # not easy to detect them, so force a global ${CT_CONNECT_TIMEOUT}-second
   473     # timeout.
   474     # For curl, no good progress indicator is available. So, be silent.
   475     if CT_DoExecLog ALL wget --passive-ftp --tries=3 -nc    \
   476                              --progress=dot:binary          \
   477                              -T ${CT_CONNECT_TIMEOUT}       \
   478                              -O "${tmp}"                    \
   479                              "${url}"
   480     then
   481         # Success, we got it, good!
   482         mv "${tmp}" "${dest}"
   483     else
   484         # Woops...
   485         rm -f "${tmp}"
   486     fi
   487 }
   488 
   489 # This function tries to retrieve a tarball form a local directory
   490 # Usage: CT_GetLocal <basename> [.extension]
   491 CT_GetLocal() {
   492     local basename="$1"
   493     local first_ext="$2"
   494     local ext
   495 
   496     # Do we already have it in *our* tarballs dir?
   497     if ext="$( CT_GetFileExtension "${basename}" ${first_ext} )"; then
   498         CT_DoLog DEBUG "Already have '${basename}'"
   499         return 0
   500     fi
   501 
   502     if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then
   503         CT_DoLog DEBUG "Trying to retrieve an already downloaded copy of '${basename}'"
   504         # We'd rather have a bzip2'ed tarball, then gzipped tarball, plain tarball,
   505         # or, as a failover, a file without extension.
   506         for ext in ${first_ext} $(CT_DoListTarballExt) ''; do
   507             CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}'"
   508             if [ -r "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" -a \
   509                  "${CT_FORCE_DOWNLOAD}" != "y" ]; then
   510                 CT_DoLog DEBUG "Got '${basename}' from local storage"
   511                 CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" "${CT_TARBALLS_DIR}/${basename}${ext}"
   512                 return 0
   513             fi
   514         done
   515     fi
   516     return 1
   517 }
   518 
   519 # This function gets the custom source from either a tarball or directory
   520 # Usage: CT_GetCustom <component> <custom_version> <custom_location>
   521 CT_GetCustom() {
   522     local custom_component="$1"
   523     local custom_version="$2"
   524     local custom_location="$3"
   525     local custom_name="${custom_component}-${custom_version}"
   526 
   527     CT_TestAndAbort "${custom_name}: CT_CUSTOM_LOCATION_ROOT_DIR or ${custom_component}'s CUSTOM_LOCATION must be set." \
   528                     -z "${CT_CUSTOM_LOCATION_ROOT_DIR}" -a -z "${custom_location}"
   529 
   530     if [ -n "${CT_CUSTOM_LOCATION_ROOT_DIR}" \
   531          -a -z "${custom_location}"          ]; then
   532         custom_location="${CT_CUSTOM_LOCATION_ROOT_DIR}/${custom_component}"
   533     fi
   534 
   535     CT_DoLog EXTRA "Using '${custom_name}' from custom location"
   536     if [ ! -d "${custom_location}" ]; then
   537         # We need to know the custom tarball extension,
   538         # so we can create a properly-named symlink, which
   539         # we use later on in 'extract'
   540         case "${custom_location}" in
   541             *.tar.bz2)      custom_name="${custom_name}.tar.bz2";;
   542             *.tar.gz|*.tgz) custom_name="${custom_name}.tar.gz";;
   543             *.tar)          custom_name="${custom_name}.tar";;
   544             *)  CT_Abort "Unknown extension for custom tarball '${custom_location}'";;
   545         esac
   546         CT_DoExecLog DEBUG ln -sf "${custom_location}"  \
   547                                   "${CT_TARBALLS_DIR}/${custom_name}"
   548     else
   549         CT_DoExecLog DEBUG ln -snf "${custom_location}" \
   550                                    "${CT_SRC_DIR}/${custom_name}"
   551     fi
   552 }
   553 
   554 # This function saves the specified to local storage if possible,
   555 # and if so, symlinks it for later usage
   556 # Usage: CT_SaveLocal </full/path/file.name>
   557 CT_SaveLocal() {
   558     local file="$1"
   559     local basename="${file##*/}"
   560 
   561     if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   562         CT_DoLog EXTRA "Saving '${basename}' to local storage"
   563         # The file may already exist if downloads are forced: remove it first
   564         CT_DoExecLog ALL rm -f "${CT_LOCAL_TARBALLS_DIR}/${basename}"
   565         CT_DoExecLog ALL mv -f "${file}" "${CT_LOCAL_TARBALLS_DIR}"
   566         CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}" "${file}"
   567     fi
   568 }
   569 
   570 # Download the file from one of the URLs passed as argument
   571 # Usage: CT_GetFile <basename> [.extension] <url> [url ...]
   572 CT_GetFile() {
   573     local ext
   574     local -a URLS
   575     local url
   576     local file="$1"
   577     local first_ext
   578     shift
   579     # If next argument starts with a dot, then this is not an URL,
   580     # and we can consider that it is a preferred extension.
   581     case "$1" in
   582         .*) first_ext="$1"
   583             shift
   584             ;;
   585     esac
   586 
   587     # Does it exist localy?
   588     if CT_GetLocal "${file}" ${first_ext}; then
   589         return 0
   590     fi
   591     # No, it does not...
   592 
   593     # If not allowed to download from the Internet, don't
   594     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   595         CT_DoLog DEBUG "Not allowed to download from the Internet, aborting ${file} download"
   596         return 1
   597     fi
   598 
   599     # Try to retrieve the file
   600     CT_DoLog EXTRA "Retrieving '${file}'"
   601 
   602     # Add URLs on the LAN mirror
   603     if [ "${CT_USE_MIRROR}" = "y" ]; then
   604         CT_TestOrAbort "Please set the mirror base URL" -n "${CT_MIRROR_BASE_URL}"
   605         URLS+=( "${CT_MIRROR_BASE_URL}/${file%-*}" )
   606         URLS+=( "${CT_MIRROR_BASE_URL}" )
   607     fi
   608 
   609     if [ "${CT_FORCE_MIRROR}" != "y" ]; then
   610         URLS+=( "${@}" )
   611     fi
   612 
   613     # Scan all URLs in turn, and try to grab a tarball from there
   614     # Do *not* try git trees (ext=/.git), this is handled in a specific
   615     # wrapper, below
   616     for ext in ${first_ext} $(CT_DoListTarballExt) ''; do
   617         # Try all urls in turn
   618         for url in "${URLS[@]}"; do
   619             [ -n "${url}" ] || continue
   620             CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   621             CT_DoGetFile "${url}/${file}${ext}"
   622             if [ -f "${CT_TARBALLS_DIR}/${file}${ext}" ]; then
   623                 CT_DoLog DEBUG "Got '${file}' from the Internet"
   624                 CT_SaveLocal "${CT_TARBALLS_DIR}/${file}${ext}"
   625                 return 0
   626             fi
   627         done
   628     done
   629 
   630     # Just return error, someone may want to catch and handle the error
   631     # (eg. glibc/eglibc add-ons can be missing).
   632     return 1
   633 }
   634 
   635 # Checkout from CVS, and build the associated tarball
   636 # The tarball will be called ${basename}.tar.bz2
   637 # Prerequisite: either the server does not require password,
   638 # or the user must already be logged in.
   639 # 'tag' is the tag to retrieve. Must be specified, but can be empty.
   640 # If dirname is specified, then module will be renamed to dirname
   641 # prior to building the tarball.
   642 # Usage: CT_GetCVS <basename> <url> <module> <tag> [dirname[=subdir]]
   643 # Note: if '=subdir' is given, then it is used instead of 'module'.
   644 CT_GetCVS() {
   645     local basename="$1"
   646     local uri="$2"
   647     local module="$3"
   648     local tag="${4:+-r ${4}}"
   649     local dirname="$5"
   650     local tmp_dir
   651 
   652     # First try locally, then the mirror
   653     if CT_GetFile "${basename}"; then
   654         # Got it! Return early! :-)
   655         return 0
   656     fi
   657 
   658     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   659         CT_DoLog WARN "Downloads forbidden, not trying cvs retrieval"
   660         return 1
   661     fi
   662 
   663     CT_MktempDir tmp_dir
   664     CT_Pushd "${tmp_dir}"
   665 
   666     CT_DoExecLog ALL cvs -z 9 -d "${uri}" co -P ${tag} "${module}"
   667     if [ -n "${dirname}" ]; then
   668         case "${dirname}" in
   669             *=*)
   670                 CT_DoExecLog DEBUG mv "${dirname#*=}" "${dirname%%=*}"
   671                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname%%=*}"
   672                 ;;
   673             *)
   674                 CT_DoExecLog ALL mv "${module}" "${dirname}"
   675                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname:-${module}}"
   676                 ;;
   677         esac
   678     fi
   679     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   680 
   681     CT_Popd
   682     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   683 }
   684 
   685 # Check out from SVN, and build the associated tarball
   686 # The tarball will be called ${basename}.tar.bz2
   687 # Prerequisite: either the server does not require password,
   688 # or the user must already be logged in.
   689 # 'rev' is the revision to retrieve
   690 # Usage: CT_GetSVN <basename> <url> [rev]
   691 CT_GetSVN() {
   692     local basename="$1"
   693     local uri="$2"
   694     local rev="$3"
   695 
   696     # First try locally, then the mirror
   697     if CT_GetFile "${basename}"; then
   698         # Got it! Return early! :-)
   699         return 0
   700     fi
   701 
   702     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   703         CT_DoLog WARN "Downloads forbidden, not trying svn retrieval"
   704         return 1
   705     fi
   706 
   707     CT_MktempDir tmp_dir
   708     CT_Pushd "${tmp_dir}"
   709 
   710     if ! CT_DoExecLog ALL svn export ${rev:+-r ${rev}} "${uri}" "${basename}"; then
   711         CT_DoLog WARN "Could not retrieve '${basename}'"
   712         return 1
   713     fi
   714     CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${basename}"
   715     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   716 
   717     CT_Popd
   718     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   719 }
   720 
   721 # Clone a git tree
   722 # Tries the given URLs in turn until one can get cloned. No tarball will be created.
   723 # Prerequisites: either the server does not require password,
   724 # or the user has already taken any action to authenticate to the server.
   725 # The cloned tree will *not* be stored in the local tarballs dir!
   726 # Usage: CT_GetGit <basename> <url [url ...]>
   727 CT_GetGit() {
   728     local basename="$1"; shift
   729     local url
   730     local cloned=0
   731 
   732     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   733         CT_DoLog WARN "Downloads forbidden, not trying git retrieval"
   734         return 1
   735     fi
   736 
   737     # Do we have it in our tarballs dir?
   738     if [ -d "${CT_TARBALLS_DIR}/${basename}/.git" ]; then
   739         CT_DoLog EXTRA "Updating git tree '${basename}'"
   740         CT_Pushd "${CT_TARBALLS_DIR}/${basename}"
   741         CT_DoExecLog ALL git pull
   742         CT_Popd
   743     else
   744         CT_DoLog EXTRA "Retrieving git tree '${basename}'"
   745         for url in "${@}"; do
   746             CT_DoLog ALL "Trying to clone from '${url}'"
   747             CT_DoForceRmdir "${CT_TARBALLS_DIR}/${basename}"
   748             if git clone "${url}" "${CT_TARBALLS_DIR}/${basename}" 2>&1 |CT_DoLog ALL; then
   749                 cloned=1
   750                 break
   751             fi
   752         done
   753         CT_TestOrAbort "Could not clone '${basename}'" ${cloned} -ne 0
   754     fi
   755 }
   756 
   757 # Extract a tarball
   758 # Some tarballs need to be extracted in specific places. Eg.: glibc addons
   759 # must be extracted in the glibc directory; uCLibc locales must be extracted
   760 # in the extra/locale sub-directory of uClibc. This is taken into account
   761 # by the caller, that did a 'cd' into the correct path before calling us
   762 # and sets nochdir to 'nochdir'.
   763 # Note also that this function handles the git trees!
   764 # Usage: CT_Extract <basename> [nochdir] [options]
   765 # where 'options' are dependent on the source (eg. git branch/tag...)
   766 CT_Extract() {
   767     local nochdir="$1"
   768     local basename
   769     local ext
   770     local lzma_prog
   771     local -a tar_opts
   772 
   773     if [ "${nochdir}" = "nochdir" ]; then
   774         shift
   775         nochdir="$(pwd)"
   776     else
   777         nochdir="${CT_SRC_DIR}"
   778     fi
   779 
   780     basename="$1"
   781     shift
   782 
   783     if ! ext="$(CT_GetFileExtension "${basename}")"; then
   784         CT_DoLog WARN "'${basename}' not found in '${CT_TARBALLS_DIR}'"
   785         return 1
   786     fi
   787     local full_file="${CT_TARBALLS_DIR}/${basename}${ext}"
   788 
   789     # Check if already extracted
   790     if [ -e "${CT_SRC_DIR}/.${basename}.extracted" ]; then
   791         CT_DoLog DEBUG "Already extracted '${basename}'"
   792         return 0
   793     fi
   794 
   795     # Check if previously partially extracted
   796     if [ -e "${CT_SRC_DIR}/.${basename}.extracting" ]; then
   797         CT_DoLog ERROR "The '${basename}' sources were partially extracted."
   798         CT_DoLog ERROR "Please remove first:"
   799         CT_DoLog ERROR " - the source dir for '${basename}', in '${CT_SRC_DIR}'"
   800         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${basename}.extracting'"
   801         CT_Abort "I'll stop now to avoid any carnage..."
   802     fi
   803     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracting"
   804 
   805     CT_Pushd "${nochdir}"
   806 
   807     CT_DoLog EXTRA "Extracting '${basename}'"
   808     CT_DoExecLog FILE mkdir -p "${basename}"
   809     tar_opts=( "--strip-components=1" )
   810     tar_opts+=( "-C" "${basename}" )
   811     tar_opts+=( "-xv" )
   812 
   813     # One note here:
   814     # - lzma can be handled either with 'xz' or 'lzma'
   815     # - we get lzma tarball only if either or both are available
   816     # - so, if we get an lzma tarball, and either 'xz' or 'lzma' is
   817     #   missing, we can assume the other is available
   818     if [ "${CT_CONFIGURE_has_lzma}" = "y" ]; then
   819         lzma_prog="lzma -fdc"
   820     else
   821         lzma_prog="xz -fdc"
   822     fi
   823     case "${ext}" in
   824         .tar.xz)      xz -fdc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   825         .tar.lzma)    ${lzma_prog} "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   826         .tar.bz2)     bzip2 -dc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   827         .tar.gz|.tgz) gzip -dc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   828         .tar)         CT_DoExecLog FILE tar "${tar_opts[@]}" -f "${full_file}";;
   829         /.git)        CT_ExtractGit "${basename}" "${@}";;
   830         *)            CT_DoLog WARN "Don't know how to handle '${basename}${ext}': unknown extension"
   831                       return 1
   832                       ;;
   833     esac
   834 
   835     # Don't mark as being extracted for git
   836     case "${ext}" in
   837         /.git)  ;;
   838         *)      CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracted";;
   839     esac
   840     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${basename}.extracting"
   841 
   842     CT_Popd
   843 }
   844 
   845 # Create a working git clone of a local git repository
   846 # Usage: CT_ExtractGit <basename> [ref]
   847 # where 'ref' is the reference to use:
   848 #   the full name of a branch, like "remotes/origin/branch_name"
   849 #   a date as understandable by git, like "YYYY-MM-DD[ hh[:mm[:ss]]]"
   850 #   a tag name
   851 # If 'ref' is not given, the current repository HEAD will be used
   852 CT_ExtractGit() {
   853     local basename="${1}"
   854     local ref="${2}"
   855     local repo
   856     local ref_type
   857 
   858     # pushd now to be able to get git revlist in case ref is a date
   859     repo="${CT_TARBALLS_DIR}/${basename}"
   860     CT_Pushd "${repo}"
   861 
   862     # What kind of reference is ${ref} ?
   863     if [ -z "${ref}" ]; then
   864         ref_type=head
   865         ref=$(git rev-list -n1 HEAD)
   866     elif git tag |grep -E "^${ref}$" >/dev/null 2>&1; then
   867         ref_type=tag
   868     elif git branch -a --no-color |grep -E "^. ${ref}$" >/dev/null 2>&1; then
   869         ref_type=branch
   870     elif date -d "${ref}" >/dev/null 2>&1; then
   871         ref_type=date
   872         ref=$(git rev-list -n1 --before="${ref}")
   873     else
   874         CT_Abort "Reference '${ref}' is an incorrect git reference: neither tag, branch nor date"
   875     fi
   876 
   877     CT_Popd
   878 
   879     CT_DoExecLog FILE rmdir "${basename}"
   880     case "${ref_type}" in
   881         branch) CT_DoExecLog FILE git clone -b "${ref}" "${repo}" "${basename}" ;;
   882         *)      CT_DoExecLog FILE git clone "${repo}" "${basename}"
   883                 CT_Pushd "${basename}"
   884                 CT_DoExecLog FILE git checkout "${ref}"
   885                 CT_Popd
   886                 ;;
   887     esac
   888 }
   889 
   890 # Patches the specified component
   891 # See CT_Extract, above, for explanations on 'nochdir'
   892 # Usage: CT_Patch [nochdir] <packagename> <packageversion>
   893 # If the package directory is *not* packagename-packageversion, then
   894 # the caller must cd into the proper directory first, and call us
   895 # with nochdir
   896 CT_Patch() {
   897     local nochdir="$1"
   898     local pkgname
   899     local version
   900     local pkgdir
   901     local base_file
   902     local ver_file
   903     local d
   904     local -a patch_dirs
   905     local bundled_patch_dir
   906     local local_patch_dir
   907 
   908     if [ "${nochdir}" = "nochdir" ]; then
   909         shift
   910         pkgname="$1"
   911         version="$2"
   912         pkgdir="${pkgname}-${version}"
   913         nochdir="$(pwd)"
   914     else
   915         pkgname="$1"
   916         version="$2"
   917         pkgdir="${pkgname}-${version}"
   918         nochdir="${CT_SRC_DIR}/${pkgdir}"
   919     fi
   920 
   921     # Check if already patched
   922     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patched" ]; then
   923         CT_DoLog DEBUG "Already patched '${pkgdir}'"
   924         return 0
   925     fi
   926 
   927     # Check if already partially patched
   928     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patching" ]; then
   929         CT_DoLog ERROR "The '${pkgdir}' sources were partially patched."
   930         CT_DoLog ERROR "Please remove first:"
   931         CT_DoLog ERROR " - the source dir for '${pkgdir}', in '${CT_SRC_DIR}'"
   932         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.extracted'"
   933         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.patching'"
   934         CT_Abort "I'll stop now to avoid any carnage..."
   935     fi
   936     touch "${CT_SRC_DIR}/.${pkgdir}.patching"
   937 
   938     CT_Pushd "${nochdir}"
   939 
   940     CT_DoLog EXTRA "Patching '${pkgdir}'"
   941 
   942     bundled_patch_dir="${CT_LIB_DIR}/patches/${pkgname}/${version}"
   943     local_patch_dir="${CT_LOCAL_PATCH_DIR}/${pkgname}/${version}"
   944 
   945     case "${CT_PATCH_ORDER}" in
   946         bundled)        patch_dirs=("${bundled_patch_dir}");;
   947         local)          patch_dirs=("${local_patch_dir}");;
   948         bundled,local)  patch_dirs=("${bundled_patch_dir}" "${local_patch_dir}");;
   949         local,bundled)  patch_dirs=("${local_patch_dir}" "${bundled_patch_dir}");;
   950         none)           patch_dirs=;;
   951     esac
   952 
   953     for d in "${patch_dirs[@]}"; do
   954         CT_DoLog DEBUG "Looking for patches in '${d}'..."
   955         if [ -n "${d}" -a -d "${d}" ]; then
   956             for p in "${d}"/*.patch; do
   957                 if [ -f "${p}" ]; then
   958                     CT_DoLog DEBUG "Applying patch '${p}'"
   959                     CT_DoExecLog ALL patch --no-backup-if-mismatch -g0 -F1 -p1 -f <"${p}"
   960                 fi
   961             done
   962             if [ "${CT_PATCH_SINGLE}" = "y" ]; then
   963                 break
   964             fi
   965         fi
   966     done
   967 
   968     if [ "${CT_OVERIDE_CONFIG_GUESS_SUB}" = "y" ]; then
   969         CT_DoLog ALL "Overiding config.guess and config.sub"
   970         for cfg in config_guess config_sub; do
   971             eval ${cfg}="${CT_LIB_DIR}/scripts/${cfg/_/.}"
   972             [ -e "${CT_TOP_DIR}/scripts/${cfg/_/.}" ] && eval ${cfg}="${CT_TOP_DIR}/scripts/${cfg/_/.}"
   973             # Can't use CT_DoExecLog because of the '{} \;' to be passed un-mangled to find
   974             find . -type f -name "${cfg/_/.}" -exec cp -v "${!cfg}" {} \; |CT_DoLog ALL
   975         done
   976     fi
   977 
   978     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${pkgdir}.patched"
   979     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${pkgdir}.patching"
   980 
   981     CT_Popd
   982 }
   983 
   984 # Two wrappers to call config.(guess|sub) either from CT_TOP_DIR or CT_LIB_DIR.
   985 # Those from CT_TOP_DIR, if they exist, will be be more recent than those from CT_LIB_DIR.
   986 CT_DoConfigGuess() {
   987     if [ -x "${CT_TOP_DIR}/scripts/config.guess" ]; then
   988         "${CT_TOP_DIR}/scripts/config.guess"
   989     else
   990         "${CT_LIB_DIR}/scripts/config.guess"
   991     fi
   992 }
   993 
   994 CT_DoConfigSub() {
   995     if [ -x "${CT_TOP_DIR}/scripts/config.sub" ]; then
   996         "${CT_TOP_DIR}/scripts/config.sub" "$@"
   997     else
   998         "${CT_LIB_DIR}/scripts/config.sub" "$@"
   999     fi
  1000 }
  1001 
  1002 # Compute the target tuple from what is provided by the user
  1003 # Usage: CT_DoBuildTargetTuple
  1004 # In fact this function takes the environment variables to build the target
  1005 # tuple. It is needed both by the normal build sequence, as well as the
  1006 # sample saving sequence.
  1007 CT_DoBuildTargetTuple() {
  1008     # Set the endianness suffix, and the default endianness gcc option
  1009     case "${CT_ARCH_ENDIAN}" in
  1010         big)
  1011             target_endian_eb=eb
  1012             target_endian_el=
  1013             CT_ARCH_ENDIAN_CFLAG="-mbig-endian"
  1014             CT_ARCH_ENDIAN_LDFLAG="-Wl,-EB"
  1015             ;;
  1016         little)
  1017             target_endian_eb=
  1018             target_endian_el=el
  1019             CT_ARCH_ENDIAN_CFLAG="-mlittle-endian"
  1020             CT_ARCH_ENDIAN_LDFLAG="-Wl,-EL"
  1021             ;;
  1022     esac
  1023 
  1024     # Build the default architecture tuple part
  1025     CT_TARGET_ARCH="${CT_ARCH}"
  1026 
  1027     # Set defaults for the system part of the tuple. Can be overriden
  1028     # by architecture-specific values.
  1029     case "${CT_LIBC}" in
  1030         *glibc) CT_TARGET_SYS=gnu;;
  1031         uClibc) CT_TARGET_SYS=uclibc;;
  1032         *)      CT_TARGET_SYS=elf;;
  1033     esac
  1034 
  1035     # Set the default values for ARCH, ABI, CPU, TUNE, FPU and FLOAT
  1036     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
  1037     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
  1038     [ "${CT_ARCH_ARCH}"     ] && { CT_ARCH_ARCH_CFLAG="-march=${CT_ARCH_ARCH}";  CT_ARCH_WITH_ARCH="--with-arch=${CT_ARCH_ARCH}"; }
  1039     [ "${CT_ARCH_ABI}"      ] && { CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_ABI}";     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_ABI}";    }
  1040     [ "${CT_ARCH_CPU}"      ] && { CT_ARCH_CPU_CFLAG="-mcpu=${CT_ARCH_CPU}";     CT_ARCH_WITH_CPU="--with-cpu=${CT_ARCH_CPU}";    }
  1041     [ "${CT_ARCH_TUNE}"     ] && { CT_ARCH_TUNE_CFLAG="-mtune=${CT_ARCH_TUNE}";  CT_ARCH_WITH_TUNE="--with-tune=${CT_ARCH_TUNE}"; }
  1042     [ "${CT_ARCH_FPU}"      ] && { CT_ARCH_FPU_CFLAG="-mfpu=${CT_ARCH_FPU}";     CT_ARCH_WITH_FPU="--with-fpu=${CT_ARCH_FPU}";    }
  1043 
  1044     case "${CT_ARCH_FLOAT}" in
  1045         hard)
  1046             CT_ARCH_FLOAT_CFLAG="-mhard-float"
  1047             CT_ARCH_WITH_FLOAT="--with-float=hard"
  1048             ;;
  1049         soft)
  1050             CT_ARCH_FLOAT_CFLAG="-msoft-float"
  1051             CT_ARCH_WITH_FLOAT="--with-float=soft"
  1052             ;;
  1053         softfp)
  1054             CT_ARCH_FLOAT_CFLAG="-mfloat-abi=softfp"
  1055             CT_ARCH_WITH_FLOAT="--with-float=softfp"
  1056             ;;
  1057     esac
  1058 
  1059     # Build the default kernel tuple part
  1060     CT_TARGET_KERNEL="${CT_KERNEL}"
  1061 
  1062     # Overide the default values with the components specific settings
  1063     CT_DoArchTupleValues
  1064     CT_DoKernelTupleValues
  1065 
  1066     # Finish the target tuple construction
  1067     CT_TARGET="${CT_TARGET_ARCH}"
  1068     CT_TARGET="${CT_TARGET}${CT_TARGET_VENDOR:+-${CT_TARGET_VENDOR}}"
  1069     CT_TARGET="${CT_TARGET}${CT_TARGET_KERNEL:+-${CT_TARGET_KERNEL}}"
  1070     CT_TARGET="${CT_TARGET}${CT_TARGET_SYS:+-${CT_TARGET_SYS}}"
  1071 
  1072     # Sanity checks
  1073     __sed_alias=""
  1074     if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
  1075         __sed_alias=$(echo "${CT_TARGET}" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
  1076     fi
  1077     case ":${CT_TARGET_VENDOR}:${CT_TARGET_ALIAS}:${__sed_alias}:" in
  1078       :*" "*:*:*:) CT_Abort "Don't use spaces in the vendor string, it breaks things.";;
  1079       :*"-"*:*:*:) CT_Abort "Don't use dashes in the vendor string, it breaks things.";;
  1080       :*:*" "*:*:) CT_Abort "Don't use spaces in the target alias, it breaks things.";;
  1081       :*:*:*" "*:) CT_Abort "Don't use spaces in the target sed transform, it breaks things.";;
  1082     esac
  1083 
  1084     # Canonicalise it
  1085     CT_TARGET=$(CT_DoConfigSub "${CT_TARGET}")
  1086     # Prepare the target CFLAGS
  1087     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ENDIAN_CFLAG}"
  1088     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ARCH_CFLAG}"
  1089     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ABI_CFLAG}"
  1090     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_CPU_CFLAG}"
  1091     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_TUNE_CFLAG}"
  1092     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FPU_CFLAG}"
  1093     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FLOAT_CFLAG}"
  1094 
  1095     # Now on for the target LDFLAGS
  1096     CT_ARCH_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_ARCH_ENDIAN_LDFLAG}"
  1097 }
  1098 
  1099 # This function does pause the build until the user strikes "Return"
  1100 # Usage: CT_DoPause [optional_message]
  1101 CT_DoPause() {
  1102     local foo
  1103     local message="${1:-Pausing for your pleasure}"
  1104     CT_DoLog INFO "${message}"
  1105     read -p "Press 'Enter' to continue, or Ctrl-C to stop..." foo >&6
  1106     return 0
  1107 }
  1108 
  1109 # This function creates a tarball of the specified directory, but
  1110 # only if it exists
  1111 # Usage: CT_DoTarballIfExists <dir> <tarball_basename> [extra_tar_options [...]]
  1112 CT_DoTarballIfExists() {
  1113     local dir="$1"
  1114     local tarball="$2"
  1115     shift 2
  1116     local -a extra_tar_opts=( "$@" )
  1117     local -a compress
  1118 
  1119     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1120         y)  compress=( gzip -c -3 - ); tar_ext=.gz;;
  1121         *)  compress=( cat - );        tar_ext=;;
  1122     esac
  1123 
  1124     if [ -d "${dir}" ]; then
  1125         CT_DoLog DEBUG "  Saving '${dir}'"
  1126         { tar c -C "${dir}" -v -f - "${extra_tar_opts[@]}" .    \
  1127           |"${compress[@]}" >"${tarball}.tar${tar_ext}"         ;
  1128         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog STATE
  1129     else
  1130         CT_DoLog STATE "  Not saving '${dir}': does not exist"
  1131     fi
  1132 }
  1133 
  1134 # This function extracts a tarball to the specified directory, but
  1135 # only if the tarball exists
  1136 # Usage: CT_DoExtractTarballIfExists <tarball_basename> <dir> [extra_tar_options [...]]
  1137 CT_DoExtractTarballIfExists() {
  1138     local tarball="$1"
  1139     local dir="$2"
  1140     shift 2
  1141     local -a extra_tar_opts=( "$@" )
  1142     local -a uncompress
  1143 
  1144     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1145         y)  uncompress=( gzip -c -d ); tar_ext=.gz;;
  1146         *)  uncompress=( cat );        tar_ext=;;
  1147     esac
  1148 
  1149     if [ -f "${tarball}.tar${tar_ext}" ]; then
  1150         CT_DoLog DEBUG "  Restoring '${dir}'"
  1151         CT_DoForceRmdir "${dir}"
  1152         CT_DoExecLog DEBUG mkdir -p "${dir}"
  1153         { "${uncompress[@]}" "${tarball}.tar${tar_ext}"     \
  1154           |tar x -C "${dir}" -v -f - "${extra_tar_opts[@]}" ;
  1155         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog STATE
  1156     else
  1157         CT_DoLog STATE "  Not restoring '${dir}': does not exist"
  1158     fi
  1159 }
  1160 
  1161 # This function saves the state of the toolchain to be able to restart
  1162 # at any one point
  1163 # Usage: CT_DoSaveState <next_step_name>
  1164 CT_DoSaveState() {
  1165 	[ "${CT_DEBUG_CT_SAVE_STEPS}" = "y" ] || return 0
  1166     local state_name="$1"
  1167     local state_dir="${CT_STATE_DIR}/${state_name}"
  1168 
  1169     # Log this to the log level required by the user
  1170     CT_DoLog ${CT_LOG_LEVEL_MAX} "Saving state to restart at step '${state_name}'..."
  1171 
  1172     rm -rf "${state_dir}"
  1173     mkdir -p "${state_dir}"
  1174 
  1175     CT_DoLog STATE "  Saving environment and aliases"
  1176     # We must omit shell functions, and some specific bash variables
  1177     # that break when restoring the environment, later. We could do
  1178     # all the processing in the awk script, but a sed is easier...
  1179     set |awk '
  1180               BEGIN { _p = 1; }
  1181               $0~/^[^ ]+ \(\)/ { _p = 0; }
  1182               _p == 1
  1183               $0 == "}" { _p = 1; }
  1184               ' |sed -r -e '/^BASH_(ARGC|ARGV|LINENO|SOURCE|VERSINFO)=/d;
  1185                            /^(UID|EUID)=/d;
  1186                            /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh"
  1187 
  1188     CT_DoTarballIfExists "${CT_BUILDTOOLS_PREFIX_DIR}" "${state_dir}/buildtools_dir"
  1189     CT_DoTarballIfExists "${CT_CONFIG_DIR}" "${state_dir}/config_dir"
  1190     CT_DoTarballIfExists "${CT_PREFIX_DIR}" "${state_dir}/prefix_dir" --exclude '*.log'
  1191 
  1192     CT_DoLog STATE "  Saving log file"
  1193     exec >/dev/null
  1194     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1195         y)  gzip -3 -c "${tmp_log_file}"  >"${state_dir}/log.gz";;
  1196         *)  cat "${tmp_log_file}" >"${state_dir}/log";;
  1197     esac
  1198     exec >>"${tmp_log_file}"
  1199 }
  1200 
  1201 # This function restores a previously saved state
  1202 # Usage: CT_DoLoadState <state_name>
  1203 CT_DoLoadState(){
  1204     local state_name="$1"
  1205     local state_dir="${CT_STATE_DIR}/${state_name}"
  1206     local old_RESTART="${CT_RESTART}"
  1207     local old_STOP="${CT_STOP}"
  1208 
  1209     CT_TestOrAbort "The previous build did not reach the point where it could be restarted at '${CT_RESTART}'" -d "${state_dir}"
  1210 
  1211     # We need to do something special with the log file!
  1212     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
  1213         exec >"${state_dir}/tail.log"
  1214     fi
  1215 
  1216     # Log this to the log level required by the user
  1217     CT_DoLog ${CT_LOG_LEVEL_MAX} "Restoring state at step '${state_name}', as requested."
  1218 
  1219     CT_DoExtractTarballIfExists "${state_dir}/prefix_dir" "${CT_PREFIX_DIR}"
  1220     CT_DoExtractTarballIfExists "${state_dir}/config_dir" "${CT_CONFIG_DIR}"
  1221     CT_DoExtractTarballIfExists "${state_dir}/buildtools_dir" "${CT_BUILDTOOLS_PREFIX_DIR}"
  1222 
  1223     # Restore the environment, discarding any error message
  1224     # (for example, read-only bash internals)
  1225     CT_DoLog STATE "  Restoring environment"
  1226     . "${state_dir}/env.sh" >/dev/null 2>&1 || true
  1227 
  1228     # Restore the new RESTART and STOP steps
  1229     CT_RESTART="${old_RESTART}"
  1230     CT_STOP="${old_STOP}"
  1231     unset old_stop old_restart
  1232 
  1233     CT_DoLog STATE "  Restoring log file"
  1234     exec >/dev/null
  1235     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1236         y)  zcat "${state_dir}/log.gz" >"${tmp_log_file}";;
  1237         *)  cat "${state_dir}/log" >"${tmp_log_file}";;
  1238     esac
  1239     cat "${state_dir}/tail.log" >>"${tmp_log_file}"
  1240     exec >>"${tmp_log_file}"
  1241     rm -f "${state_dir}/tail.log"
  1242 }