scripts/functions
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Aug 22 18:28:07 2012 +0200 (2012-08-22)
changeset 3040 987ff9768880
parent 2967 04092e6b82ca
child 3048 2858a24a5846
permissions -rw-r--r--
scripts/functions: remove rude wordings

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.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 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_BUILD_DIR}/backtrace" ]; then
    15         touch "${CT_BUILD_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_BUILD_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 saves the specified to local storage if possible,
   520 # and if so, symlinks it for later usage
   521 # Usage: CT_SaveLocal </full/path/file.name>
   522 CT_SaveLocal() {
   523     local file="$1"
   524     local basename="${file##*/}"
   525 
   526     if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   527         CT_DoLog EXTRA "Saving '${basename}' to local storage"
   528         # The file may already exist if downloads are forced: remove it first
   529         CT_DoExecLog ALL rm -f "${CT_LOCAL_TARBALLS_DIR}/${basename}"
   530         CT_DoExecLog ALL mv -f "${file}" "${CT_LOCAL_TARBALLS_DIR}"
   531         CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}" "${file}"
   532     fi
   533 }
   534 
   535 # Download the file from one of the URLs passed as argument
   536 # Usage: CT_GetFile <basename> [.extension] <url> [url ...]
   537 CT_GetFile() {
   538     local ext
   539     local -a URLS
   540     local url
   541     local file="$1"
   542     local first_ext
   543     shift
   544     # If next argument starts with a dot, then this is not an URL,
   545     # and we can consider that it is a preferred extension.
   546     case "$1" in
   547         .*) first_ext="$1"
   548             shift
   549             ;;
   550     esac
   551 
   552     # Does it exist localy?
   553     if CT_GetLocal "${file}" ${first_ext}; then
   554         return 0
   555     fi
   556     # No, it does not...
   557 
   558     # Try to retrieve the file
   559     CT_DoLog EXTRA "Retrieving '${file}'"
   560 
   561     # Add URLs on the LAN mirror
   562     if [ "${CT_USE_MIRROR}" = "y" ]; then
   563         CT_TestOrAbort "Please set the mirror base URL" -n "${CT_MIRROR_BASE_URL}"
   564         URLS+=( "${CT_MIRROR_BASE_URL}/${file%-*}" )
   565         URLS+=( "${CT_MIRROR_BASE_URL}" )
   566     fi
   567 
   568     if [ "${CT_FORBID_DOWNLOAD}" != "y" ]; then
   569         URLS+=( "${@}" )
   570     fi
   571 
   572     # Scan all URLs in turn, and try to grab a tarball from there
   573     # Do *not* try git trees (ext=/.git), this is handled in a specific
   574     # wrapper, below
   575     for ext in ${first_ext} $(CT_DoListTarballExt) ''; do
   576         # Try all urls in turn
   577         for url in "${URLS[@]}"; do
   578             [ -n "${url}" ] || continue
   579             CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   580             CT_DoGetFile "${url}/${file}${ext}"
   581             if [ -f "${CT_TARBALLS_DIR}/${file}${ext}" ]; then
   582                 CT_DoLog DEBUG "Got '${file}' from the Internet"
   583                 CT_SaveLocal "${CT_TARBALLS_DIR}/${file}${ext}"
   584                 return 0
   585             fi
   586         done
   587     done
   588 
   589     # Just return error, someone may want to catch and handle the error
   590     # (eg. glibc/eglibc add-ons can be missing).
   591     return 1
   592 }
   593 
   594 # Checkout from CVS, and build the associated tarball
   595 # The tarball will be called ${basename}.tar.bz2
   596 # Prerequisite: either the server does not require password,
   597 # or the user must already be logged in.
   598 # 'tag' is the tag to retrieve. Must be specified, but can be empty.
   599 # If dirname is specified, then module will be renamed to dirname
   600 # prior to building the tarball.
   601 # Usage: CT_GetCVS <basename> <url> <module> <tag> [dirname[=subdir]]
   602 # Note: if '=subdir' is given, then it is used instead of 'module'.
   603 CT_GetCVS() {
   604     local basename="$1"
   605     local uri="$2"
   606     local module="$3"
   607     local tag="${4:+-r ${4}}"
   608     local dirname="$5"
   609     local tmp_dir
   610 
   611     # First try locally, then the mirror
   612     if CT_GetFile "${basename}"; then
   613         # Got it! Return early! :-)
   614         return 0
   615     fi
   616 
   617     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   618         CT_DoLog WARN "Downloads forbidden, not trying cvs retrieval"
   619         return 1
   620     fi
   621 
   622     CT_MktempDir tmp_dir
   623     CT_Pushd "${tmp_dir}"
   624 
   625     CT_DoExecLog ALL cvs -z 9 -d "${uri}" co -P ${tag} "${module}"
   626     if [ -n "${dirname}" ]; then
   627         case "${dirname}" in
   628             *=*)
   629                 CT_DoExecLog DEBUG mv "${dirname#*=}" "${dirname%%=*}"
   630                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname%%=*}"
   631                 ;;
   632             *)
   633                 CT_DoExecLog ALL mv "${module}" "${dirname}"
   634                 CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname:-${module}}"
   635                 ;;
   636         esac
   637     fi
   638     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   639 
   640     CT_Popd
   641     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   642 }
   643 
   644 # Check out from SVN, and build the associated tarball
   645 # The tarball will be called ${basename}.tar.bz2
   646 # Prerequisite: either the server does not require password,
   647 # or the user must already be logged in.
   648 # 'rev' is the revision to retrieve
   649 # Usage: CT_GetSVN <basename> <url> [rev]
   650 CT_GetSVN() {
   651     local basename="$1"
   652     local uri="$2"
   653     local rev="$3"
   654 
   655     # First try locally, then the mirror
   656     if CT_GetFile "${basename}"; then
   657         # Got it! Return early! :-)
   658         return 0
   659     fi
   660 
   661     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   662         CT_DoLog WARN "Downloads forbidden, not trying svn retrieval"
   663         return 1
   664     fi
   665 
   666     CT_MktempDir tmp_dir
   667     CT_Pushd "${tmp_dir}"
   668 
   669     if ! CT_DoExecLog ALL svn export ${rev:+-r ${rev}} "${uri}" "${basename}"; then
   670         CT_DoLog WARN "Could not retrieve '${basename}'"
   671         return 1
   672     fi
   673     CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${basename}"
   674     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   675 
   676     CT_Popd
   677     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   678 }
   679 
   680 # Clone a git tree
   681 # Tries the given URLs in turn until one can get cloned. No tarball will be created.
   682 # Prerequisites: either the server does not require password,
   683 # or the user has already taken any action to authenticate to the server.
   684 # The cloned tree will *not* be stored in the local tarballs dir!
   685 # Usage: CT_GetGit <basename> <url [url ...]>
   686 CT_GetGit() {
   687     local basename="$1"; shift
   688     local url
   689     local cloned=0
   690 
   691     if [ "${CT_FORBID_DOWNLOAD}" = "y" ]; then
   692         CT_DoLog WARN "Downloads forbidden, not trying git retrieval"
   693         return 1
   694     fi
   695 
   696     # Do we have it in our tarballs dir?
   697     if [ -d "${CT_TARBALLS_DIR}/${basename}/.git" ]; then
   698         CT_DoLog EXTRA "Updating git tree '${basename}'"
   699         CT_Pushd "${CT_TARBALLS_DIR}/${basename}"
   700         CT_DoExecLog ALL git pull
   701         CT_Popd
   702     else
   703         CT_DoLog EXTRA "Retrieving git tree '${basename}'"
   704         for url in "${@}"; do
   705             CT_DoLog ALL "Trying to clone from '${url}'"
   706             CT_DoForceRmdir "${CT_TARBALLS_DIR}/${basename}"
   707             if git clone "${url}" "${CT_TARBALLS_DIR}/${basename}" 2>&1 |CT_DoLog ALL; then
   708                 cloned=1
   709                 break
   710             fi
   711         done
   712         CT_TestOrAbort "Could not clone '${basename}'" ${cloned} -ne 0
   713     fi
   714 }
   715 
   716 # Extract a tarball
   717 # Some tarballs need to be extracted in specific places. Eg.: glibc addons
   718 # must be extracted in the glibc directory; uCLibc locales must be extracted
   719 # in the extra/locale sub-directory of uClibc. This is taken into account
   720 # by the caller, that did a 'cd' into the correct path before calling us
   721 # and sets nochdir to 'nochdir'.
   722 # Note also that this function handles the git trees!
   723 # Usage: CT_Extract <basename> [nochdir] [options]
   724 # where 'options' are dependent on the source (eg. git branch/tag...)
   725 CT_Extract() {
   726     local nochdir="$1"
   727     local basename
   728     local ext
   729     local lzma_prog
   730     local -a tar_opts
   731 
   732     if [ "${nochdir}" = "nochdir" ]; then
   733         shift
   734         nochdir="$(pwd)"
   735     else
   736         nochdir="${CT_SRC_DIR}"
   737     fi
   738 
   739     basename="$1"
   740     shift
   741 
   742     if ! ext="$(CT_GetFileExtension "${basename}")"; then
   743         CT_DoLog WARN "'${basename}' not found in '${CT_TARBALLS_DIR}'"
   744         return 1
   745     fi
   746     local full_file="${CT_TARBALLS_DIR}/${basename}${ext}"
   747 
   748     # Check if already extracted
   749     if [ -e "${CT_SRC_DIR}/.${basename}.extracted" ]; then
   750         CT_DoLog DEBUG "Already extracted '${basename}'"
   751         return 0
   752     fi
   753 
   754     # Check if previously partially extracted
   755     if [ -e "${CT_SRC_DIR}/.${basename}.extracting" ]; then
   756         CT_DoLog ERROR "The '${basename}' sources were partially extracted."
   757         CT_DoLog ERROR "Please remove first:"
   758         CT_DoLog ERROR " - the source dir for '${basename}', in '${CT_SRC_DIR}'"
   759         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${basename}.extracting'"
   760         CT_Abort "I'll stop now to avoid any carnage..."
   761     fi
   762     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracting"
   763 
   764     CT_Pushd "${nochdir}"
   765 
   766     CT_DoLog EXTRA "Extracting '${basename}'"
   767     CT_DoExecLog FILE mkdir -p "${basename}"
   768     tar_opts=( "--strip-components=1" )
   769     tar_opts+=( "-C" "${basename}" )
   770     tar_opts+=( "-xv" )
   771 
   772     # One note here:
   773     # - lzma can be handled either with 'xz' or 'lzma'
   774     # - we get lzma tarball only if either or both are available
   775     # - so, if we get an lzma tarball, and either 'xz' or 'lzma' is
   776     #   missing, we can assume the other is available
   777     if [ "${CT_CONFIGURE_has_lzma}" = "y" ]; then
   778         lzma_prog="lzma -fdc"
   779     else
   780         lzma_prog="xz -fdc"
   781     fi
   782     case "${ext}" in
   783         .tar.xz)      xz -fdc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   784         .tar.lzma)    ${lzma_prog} "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   785         .tar.bz2)     bzip2 -dc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   786         .tar.gz|.tgz) gzip -dc "${full_file}" | CT_DoExecLog FILE tar "${tar_opts[@]}" -f -;;
   787         .tar)         CT_DoExecLog FILE tar "${tar_opts[@]}" -f "${full_file}";;
   788         /.git)        CT_ExtractGit "${basename}" "${@}";;
   789         *)            CT_DoLog WARN "Don't know how to handle '${basename}${ext}': unknown extension"
   790                       return 1
   791                       ;;
   792     esac
   793 
   794     # Don't mark as being extracted for git
   795     case "${ext}" in
   796         /.git)  ;;
   797         *)      CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${basename}.extracted";;
   798     esac
   799     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${basename}.extracting"
   800 
   801     CT_Popd
   802 }
   803 
   804 # Create a working git clone of a local git repository
   805 # Usage: CT_ExtractGit <basename> [ref]
   806 # where 'ref' is the reference to use:
   807 #   the full name of a branch, like "remotes/origin/branch_name"
   808 #   a date as understandable by git, like "YYYY-MM-DD[ hh[:mm[:ss]]]"
   809 #   a tag name
   810 # If 'ref' is not given, the current repository HEAD will be used
   811 CT_ExtractGit() {
   812     local basename="${1}"
   813     local ref="${2}"
   814     local repo
   815     local ref_type
   816 
   817     # pushd now to be able to get git revlist in case ref is a date
   818     repo="${CT_TARBALLS_DIR}/${basename}"
   819     CT_Pushd "${repo}"
   820 
   821     # What kind of reference is ${ref} ?
   822     if [ -z "${ref}" ]; then
   823         ref_type=head
   824         ref=$(git rev-list -n1 HEAD)
   825     elif git tag |grep -E "^${ref}$" >/dev/null 2>&1; then
   826         ref_type=tag
   827     elif git branch -a --no-color |grep -E "^. ${ref}$" >/dev/null 2>&1; then
   828         ref_type=branch
   829     elif date -d "${ref}" >/dev/null 2>&1; then
   830         ref_type=date
   831         ref=$(git rev-list -n1 --before="${ref}")
   832     else
   833         CT_Abort "Reference '${ref}' is an incorrect git reference: neither tag, branch nor date"
   834     fi
   835 
   836     CT_Popd
   837 
   838     CT_DoExecLog FILE rmdir "${basename}"
   839     case "${ref_type}" in
   840         branch) CT_DoExecLog FILE git clone -b "${ref}" "${repo}" "${basename}" ;;
   841         *)      CT_DoExecLog FILE git clone "${repo}" "${basename}"
   842                 CT_Pushd "${basename}"
   843                 CT_DoExecLog FILE git checkout "${ref}"
   844                 CT_Popd
   845                 ;;
   846     esac
   847 }
   848 
   849 # Patches the specified component
   850 # See CT_Extract, above, for explanations on 'nochdir'
   851 # Usage: CT_Patch [nochdir] <packagename> <packageversion>
   852 # If the package directory is *not* packagename-packageversion, then
   853 # the caller must cd into the proper directory first, and call us
   854 # with nochdir
   855 CT_Patch() {
   856     local nochdir="$1"
   857     local pkgname
   858     local version
   859     local pkgdir
   860     local base_file
   861     local ver_file
   862     local d
   863     local -a patch_dirs
   864     local bundled_patch_dir
   865     local local_patch_dir
   866 
   867     if [ "${nochdir}" = "nochdir" ]; then
   868         shift
   869         pkgname="$1"
   870         version="$2"
   871         pkgdir="${pkgname}-${version}"
   872         nochdir="$(pwd)"
   873     else
   874         pkgname="$1"
   875         version="$2"
   876         pkgdir="${pkgname}-${version}"
   877         nochdir="${CT_SRC_DIR}/${pkgdir}"
   878     fi
   879 
   880     # Check if already patched
   881     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patched" ]; then
   882         CT_DoLog DEBUG "Already patched '${pkgdir}'"
   883         return 0
   884     fi
   885 
   886     # Check if already partially patched
   887     if [ -e "${CT_SRC_DIR}/.${pkgdir}.patching" ]; then
   888         CT_DoLog ERROR "The '${pkgdir}' sources were partially patched."
   889         CT_DoLog ERROR "Please remove first:"
   890         CT_DoLog ERROR " - the source dir for '${pkgdir}', in '${CT_SRC_DIR}'"
   891         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.extracted'"
   892         CT_DoLog ERROR " - the file '${CT_SRC_DIR}/.${pkgdir}.patching'"
   893         CT_Abort "I'll stop now to avoid any carnage..."
   894     fi
   895     touch "${CT_SRC_DIR}/.${pkgdir}.patching"
   896 
   897     CT_Pushd "${nochdir}"
   898 
   899     CT_DoLog EXTRA "Patching '${pkgdir}'"
   900 
   901     bundled_patch_dir="${CT_LIB_DIR}/patches/${pkgname}/${version}"
   902     local_patch_dir="${CT_LOCAL_PATCH_DIR}/${pkgname}/${version}"
   903 
   904     case "${CT_PATCH_ORDER}" in
   905         bundled)        patch_dirs=("${bundled_patch_dir}");;
   906         local)          patch_dirs=("${local_patch_dir}");;
   907         bundled,local)  patch_dirs=("${bundled_patch_dir}" "${local_patch_dir}");;
   908         local,bundled)  patch_dirs=("${local_patch_dir}" "${bundled_patch_dir}");;
   909         none)           patch_dirs=;;
   910     esac
   911 
   912     for d in "${patch_dirs[@]}"; do
   913         CT_DoLog DEBUG "Looking for patches in '${d}'..."
   914         if [ -n "${d}" -a -d "${d}" ]; then
   915             for p in "${d}"/*.patch; do
   916                 if [ -f "${p}" ]; then
   917                     CT_DoLog DEBUG "Applying patch '${p}'"
   918                     CT_DoExecLog ALL patch --no-backup-if-mismatch -g0 -F1 -p1 -f <"${p}"
   919                 fi
   920             done
   921             if [ "${CT_PATCH_SINGLE}" = "y" ]; then
   922                 break
   923             fi
   924         fi
   925     done
   926 
   927     if [ "${CT_OVERIDE_CONFIG_GUESS_SUB}" = "y" ]; then
   928         CT_DoLog ALL "Overiding config.guess and config.sub"
   929         for cfg in config_guess config_sub; do
   930             eval ${cfg}="${CT_LIB_DIR}/scripts/${cfg/_/.}"
   931             [ -e "${CT_TOP_DIR}/scripts/${cfg/_/.}" ] && eval ${cfg}="${CT_TOP_DIR}/scripts/${cfg/_/.}"
   932             # Can't use CT_DoExecLog because of the '{} \;' to be passed un-mangled to find
   933             find . -type f -name "${cfg/_/.}" -exec cp -v "${!cfg}" {} \; |CT_DoLog ALL
   934         done
   935     fi
   936 
   937     CT_DoExecLog DEBUG touch "${CT_SRC_DIR}/.${pkgdir}.patched"
   938     CT_DoExecLog DEBUG rm -f "${CT_SRC_DIR}/.${pkgdir}.patching"
   939 
   940     CT_Popd
   941 }
   942 
   943 # Two wrappers to call config.(guess|sub) either from CT_TOP_DIR or CT_LIB_DIR.
   944 # Those from CT_TOP_DIR, if they exist, will be be more recent than those from CT_LIB_DIR.
   945 CT_DoConfigGuess() {
   946     if [ -x "${CT_TOP_DIR}/scripts/config.guess" ]; then
   947         "${CT_TOP_DIR}/scripts/config.guess"
   948     else
   949         "${CT_LIB_DIR}/scripts/config.guess"
   950     fi
   951 }
   952 
   953 CT_DoConfigSub() {
   954     if [ -x "${CT_TOP_DIR}/scripts/config.sub" ]; then
   955         "${CT_TOP_DIR}/scripts/config.sub" "$@"
   956     else
   957         "${CT_LIB_DIR}/scripts/config.sub" "$@"
   958     fi
   959 }
   960 
   961 # Compute the target tuple from what is provided by the user
   962 # Usage: CT_DoBuildTargetTuple
   963 # In fact this function takes the environment variables to build the target
   964 # tuple. It is needed both by the normal build sequence, as well as the
   965 # sample saving sequence.
   966 CT_DoBuildTargetTuple() {
   967     # Set the endianness suffix, and the default endianness gcc option
   968     case "${CT_ARCH_ENDIAN}" in
   969         big)
   970             target_endian_eb=eb
   971             target_endian_el=
   972             CT_ARCH_ENDIAN_CFLAG="-mbig-endian"
   973             CT_ARCH_ENDIAN_LDFLAG="-Wl,-EB"
   974             ;;
   975         little)
   976             target_endian_eb=
   977             target_endian_el=el
   978             CT_ARCH_ENDIAN_CFLAG="-mlittle-endian"
   979             CT_ARCH_ENDIAN_LDFLAG="-Wl,-EL"
   980             ;;
   981     esac
   982 
   983     # Build the default architecture tuple part
   984     CT_TARGET_ARCH="${CT_ARCH}"
   985 
   986     # Set defaults for the system part of the tuple. Can be overriden
   987     # by architecture-specific values.
   988     case "${CT_LIBC}" in
   989         *glibc) CT_TARGET_SYS=gnu;;
   990         uClibc) CT_TARGET_SYS=uclibc;;
   991         *)      CT_TARGET_SYS=elf;;
   992     esac
   993 
   994     # Set the default values for ARCH, ABI, CPU, TUNE, FPU and FLOAT
   995     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
   996     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
   997     [ "${CT_ARCH_ARCH}"     ] && { CT_ARCH_ARCH_CFLAG="-march=${CT_ARCH_ARCH}";  CT_ARCH_WITH_ARCH="--with-arch=${CT_ARCH_ARCH}"; }
   998     [ "${CT_ARCH_ABI}"      ] && { CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_ABI}";     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_ABI}";    }
   999     [ "${CT_ARCH_CPU}"      ] && { CT_ARCH_CPU_CFLAG="-mcpu=${CT_ARCH_CPU}";     CT_ARCH_WITH_CPU="--with-cpu=${CT_ARCH_CPU}";    }
  1000     [ "${CT_ARCH_TUNE}"     ] && { CT_ARCH_TUNE_CFLAG="-mtune=${CT_ARCH_TUNE}";  CT_ARCH_WITH_TUNE="--with-tune=${CT_ARCH_TUNE}"; }
  1001     [ "${CT_ARCH_FPU}"      ] && { CT_ARCH_FPU_CFLAG="-mfpu=${CT_ARCH_FPU}";     CT_ARCH_WITH_FPU="--with-fpu=${CT_ARCH_FPU}";    }
  1002 
  1003     case "${CT_ARCH_FLOAT}" in
  1004         hard)
  1005             CT_ARCH_FLOAT_CFLAG="-mhard-float"
  1006             CT_ARCH_WITH_FLOAT="--with-float=hard"
  1007             ;;
  1008         soft)
  1009             CT_ARCH_FLOAT_CFLAG="-msoft-float"
  1010             CT_ARCH_WITH_FLOAT="--with-float=soft"
  1011             ;;
  1012         softfp)
  1013             CT_ARCH_FLOAT_CFLAG="-mfloat-abi=softfp"
  1014             CT_ARCH_WITH_FLOAT="--with-float=softfp"
  1015             ;;
  1016     esac
  1017 
  1018     # Build the default kernel tuple part
  1019     CT_TARGET_KERNEL="${CT_KERNEL}"
  1020 
  1021     # Overide the default values with the components specific settings
  1022     CT_DoArchTupleValues
  1023     CT_DoKernelTupleValues
  1024 
  1025     # Finish the target tuple construction
  1026     CT_TARGET="${CT_TARGET_ARCH}"
  1027     CT_TARGET="${CT_TARGET}${CT_TARGET_VENDOR:+-${CT_TARGET_VENDOR}}"
  1028     CT_TARGET="${CT_TARGET}${CT_TARGET_KERNEL:+-${CT_TARGET_KERNEL}}"
  1029     CT_TARGET="${CT_TARGET}${CT_TARGET_SYS:+-${CT_TARGET_SYS}}"
  1030 
  1031     # Sanity checks
  1032     __sed_alias=""
  1033     if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
  1034         __sed_alias=$(echo "${CT_TARGET}" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
  1035     fi
  1036     case ":${CT_TARGET_VENDOR}:${CT_TARGET_ALIAS}:${__sed_alias}:" in
  1037       :*" "*:*:*:) CT_Abort "Don't use spaces in the vendor string, it breaks things.";;
  1038       :*"-"*:*:*:) CT_Abort "Don't use dashes in the vendor string, it breaks things.";;
  1039       :*:*" "*:*:) CT_Abort "Don't use spaces in the target alias, it breaks things.";;
  1040       :*:*:*" "*:) CT_Abort "Don't use spaces in the target sed transform, it breaks things.";;
  1041     esac
  1042 
  1043     # Canonicalise it
  1044     CT_TARGET=$(CT_DoConfigSub "${CT_TARGET}")
  1045     # Prepare the target CFLAGS
  1046     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ENDIAN_CFLAG}"
  1047     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ARCH_CFLAG}"
  1048     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ABI_CFLAG}"
  1049     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_CPU_CFLAG}"
  1050     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_TUNE_CFLAG}"
  1051     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FPU_CFLAG}"
  1052     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FLOAT_CFLAG}"
  1053 
  1054     # Now on for the target LDFLAGS
  1055     CT_ARCH_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_ARCH_ENDIAN_LDFLAG}"
  1056 }
  1057 
  1058 # This function does pause the build until the user strikes "Return"
  1059 # Usage: CT_DoPause [optional_message]
  1060 CT_DoPause() {
  1061     local foo
  1062     local message="${1:-Pausing for your pleasure}"
  1063     CT_DoLog INFO "${message}"
  1064     read -p "Press 'Enter' to continue, or Ctrl-C to stop..." foo >&6
  1065     return 0
  1066 }
  1067 
  1068 # This function creates a tarball of the specified directory, but
  1069 # only if it exists
  1070 # Usage: CT_DoTarballIfExists <dir> <tarball_basename> [extra_tar_options [...]]
  1071 CT_DoTarballIfExists() {
  1072     local dir="$1"
  1073     local tarball="$2"
  1074     shift 2
  1075     local -a extra_tar_opts=( "$@" )
  1076     local -a compress
  1077 
  1078     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1079         y)  compress=( gzip -c -3 - ); tar_ext=.gz;;
  1080         *)  compress=( cat - );        tar_ext=;;
  1081     esac
  1082 
  1083     if [ -d "${dir}" ]; then
  1084         CT_DoLog DEBUG "  Saving '${dir}'"
  1085         { tar c -C "${dir}" -v -f - "${extra_tar_opts[@]}" .    \
  1086           |"${compress[@]}" >"${tarball}.tar${tar_ext}"         ;
  1087         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog STATE
  1088     else
  1089         CT_DoLog STATE "  Not saving '${dir}': does not exist"
  1090     fi
  1091 }
  1092 
  1093 # This function extracts a tarball to the specified directory, but
  1094 # only if the tarball exists
  1095 # Usage: CT_DoExtractTarballIfExists <tarball_basename> <dir> [extra_tar_options [...]]
  1096 CT_DoExtractTarballIfExists() {
  1097     local tarball="$1"
  1098     local dir="$2"
  1099     shift 2
  1100     local -a extra_tar_opts=( "$@" )
  1101     local -a uncompress
  1102 
  1103     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1104         y)  uncompress=( gzip -c -d ); tar_ext=.gz;;
  1105         *)  uncompress=( cat );        tar_ext=;;
  1106     esac
  1107 
  1108     if [ -f "${tarball}.tar${tar_ext}" ]; then
  1109         CT_DoLog DEBUG "  Restoring '${dir}'"
  1110         CT_DoForceRmdir "${dir}"
  1111         CT_DoExecLog DEBUG mkdir -p "${dir}"
  1112         { "${uncompress[@]}" "${tarball}.tar${tar_ext}"     \
  1113           |tar x -C "${dir}" -v -f - "${extra_tar_opts[@]}" ;
  1114         } 2>&1 |sed -r -e 's/^/    /;' |CT_DoLog STATE
  1115     else
  1116         CT_DoLog STATE "  Not restoring '${dir}': does not exist"
  1117     fi
  1118 }
  1119 
  1120 # This function saves the state of the toolchain to be able to restart
  1121 # at any one point
  1122 # Usage: CT_DoSaveState <next_step_name>
  1123 CT_DoSaveState() {
  1124 	[ "${CT_DEBUG_CT_SAVE_STEPS}" = "y" ] || return 0
  1125     local state_name="$1"
  1126     local state_dir="${CT_STATE_DIR}/${state_name}"
  1127 
  1128     # Log this to the log level required by the user
  1129     CT_DoLog ${CT_LOG_LEVEL_MAX} "Saving state to restart at step '${state_name}'..."
  1130 
  1131     rm -rf "${state_dir}"
  1132     mkdir -p "${state_dir}"
  1133 
  1134     CT_DoLog STATE "  Saving environment and aliases"
  1135     # We must omit shell functions, and some specific bash variables
  1136     # that break when restoring the environment, later. We could do
  1137     # all the processing in the awk script, but a sed is easier...
  1138     set |awk '
  1139               BEGIN { _p = 1; }
  1140               $0~/^[^ ]+ \(\)/ { _p = 0; }
  1141               _p == 1
  1142               $0 == "}" { _p = 1; }
  1143               ' |sed -r -e '/^BASH_(ARGC|ARGV|LINENO|SOURCE|VERSINFO)=/d;
  1144                            /^(UID|EUID)=/d;
  1145                            /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh"
  1146 
  1147     CT_DoTarballIfExists "${CT_BUILDTOOLS_PREFIX_DIR}" "${state_dir}/buildtools_dir"
  1148     CT_DoTarballIfExists "${CT_CONFIG_DIR}" "${state_dir}/config_dir"
  1149     CT_DoTarballIfExists "${CT_PREFIX_DIR}" "${state_dir}/prefix_dir" --exclude '*.log'
  1150 
  1151     CT_DoLog STATE "  Saving log file"
  1152     exec >/dev/null
  1153     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1154         y)  gzip -3 -c "${tmp_log_file}"  >"${state_dir}/log.gz";;
  1155         *)  cat "${tmp_log_file}" >"${state_dir}/log";;
  1156     esac
  1157     exec >>"${tmp_log_file}"
  1158 }
  1159 
  1160 # This function restores a previously saved state
  1161 # Usage: CT_DoLoadState <state_name>
  1162 CT_DoLoadState(){
  1163     local state_name="$1"
  1164     local state_dir="${CT_STATE_DIR}/${state_name}"
  1165     local old_RESTART="${CT_RESTART}"
  1166     local old_STOP="${CT_STOP}"
  1167 
  1168     CT_TestOrAbort "The previous build did not reach the point where it could be restarted at '${CT_RESTART}'" -d "${state_dir}"
  1169 
  1170     # We need to do something special with the log file!
  1171     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
  1172         exec >"${state_dir}/tail.log"
  1173     fi
  1174 
  1175     # Log this to the log level required by the user
  1176     CT_DoLog ${CT_LOG_LEVEL_MAX} "Restoring state at step '${state_name}', as requested."
  1177 
  1178     CT_DoExtractTarballIfExists "${state_dir}/prefix_dir" "${CT_PREFIX_DIR}"
  1179     CT_DoExtractTarballIfExists "${state_dir}/config_dir" "${CT_CONFIG_DIR}"
  1180     CT_DoExtractTarballIfExists "${state_dir}/buildtools_dir" "${CT_BUILDTOOLS_PREFIX_DIR}"
  1181 
  1182     # Restore the environment, discarding any error message
  1183     # (for example, read-only bash internals)
  1184     CT_DoLog STATE "  Restoring environment"
  1185     . "${state_dir}/env.sh" >/dev/null 2>&1 || true
  1186 
  1187     # Restore the new RESTART and STOP steps
  1188     CT_RESTART="${old_RESTART}"
  1189     CT_STOP="${old_STOP}"
  1190     unset old_stop old_restart
  1191 
  1192     CT_DoLog STATE "  Restoring log file"
  1193     exec >/dev/null
  1194     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
  1195         y)  zcat "${state_dir}/log.gz" >"${tmp_log_file}";;
  1196         *)  cat "${state_dir}/log" >"${tmp_log_file}";;
  1197     esac
  1198     cat "${state_dir}/tail.log" >>"${tmp_log_file}"
  1199     exec >>"${tmp_log_file}"
  1200     rm -f "${state_dir}/tail.log"
  1201 }