scripts/functions
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 26 22:43:08 2009 +0000 (2009-01-26)
changeset 1156 b8e4a98bbdf3
parent 1148 081205fd3790
child 1177 748c418d3b6a
permissions -rw-r--r--
Finally used the discovered paths from ./configure in scripts/crosstool-NG.sh:
- fix Makefile to really, really not used built-in rules and variables
- have scripts/crosstool-NG.sh generated from scripts/crosstool-NG.sh.in
- create a bin-overide directory ( in ${CT_WORK_DIR}/bin ) that contains shell wrappers to the actual discovered tools

/trunk/scripts/crosstool-NG.sh.in | 27 23 4 0 +++++++++++++++++++++---
/trunk/Makefile.in | 50 48 2 0 +++++++++++++++++++++++++++++++++++++++++++--
2 files changed, 71 insertions(+), 6 deletions(-)
     1 # This file contains some usefull common functions
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package
     4 
     5 # Prepare the fault handler
     6 CT_OnError() {
     7     ret=$?
     8     # Bail out early in subshell, the upper level shell will act accordingly.
     9     [ ${BASH_SUBSHELL} -eq 0 ] || exit $ret
    10     CT_DoLog ERROR "Build failed in step '${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}'"
    11     for((step=(CT_STEP_COUNT-1); step>1; step--)); do
    12         CT_DoLog ERROR "      called in step '${CT_STEP_MESSAGE[${step}]}'"
    13     done
    14     CT_DoLog ERROR "Error happened in '${BASH_SOURCE[1]}' in function '${FUNCNAME[1]}' (line unknown, sorry)"
    15     for((depth=2; ${BASH_LINENO[$((${depth}-1))]}>0; depth++)); do
    16         CT_DoLog ERROR "      called from '${BASH_SOURCE[${depth}]}' at line # ${BASH_LINENO[${depth}-1]} in function '${FUNCNAME[${depth}]}'"
    17     done
    18     [ "${CT_LOG_TO_FILE}" = "y" ] && CT_DoLog ERROR "Look at '${CT_LOG_FILE}' for more info on this error."
    19     CT_STEP_COUNT=1
    20     CT_DoEnd ERROR
    21     exit $ret
    22 }
    23 
    24 # Install the fault handler
    25 trap CT_OnError ERR
    26 
    27 # Inherit the fault handler in subshells and functions
    28 set -E
    29 
    30 # Make pipes fail on the _first_ failed command
    31 # Not supported on bash < 3.x, but we need it, so drop the obsoleting bash-2.x
    32 set -o pipefail
    33 
    34 # Don't hash commands' locations, and search every time it is requested.
    35 # This is slow, but needed because of the static/shared core gcc which shall
    36 # always match to shared if it exists, and only fallback to static if the
    37 # shared is not found
    38 set +o hashall
    39 
    40 # Log policy:
    41 #  - first of all, save stdout so we can see the live logs: fd #6
    42 exec 6>&1
    43 #  - then point stdout to the log file (temporary for now)
    44 tmp_log_file="${CT_TOP_DIR}/log.$$"
    45 exec >>"${tmp_log_file}"
    46 
    47 # The different log levels:
    48 CT_LOG_LEVEL_ERROR=0
    49 CT_LOG_LEVEL_WARN=1
    50 CT_LOG_LEVEL_INFO=2
    51 CT_LOG_LEVEL_EXTRA=3
    52 CT_LOG_LEVEL_DEBUG=4
    53 CT_LOG_LEVEL_ALL=5
    54 
    55 # Make it easy to use \n and !
    56 CR=$(printf "\n")
    57 BANG='!'
    58 
    59 # A function to log what is happening
    60 # Different log level are available:
    61 #   - ERROR:   A serious, fatal error occurred
    62 #   - WARN:    A non fatal, non serious error occurred, take your responsbility with the generated build
    63 #   - INFO:    Informational messages
    64 #   - EXTRA:   Extra informational messages
    65 #   - DEBUG:   Debug messages
    66 #   - ALL:     Component's build messages
    67 # Usage: CT_DoLog <level> [message]
    68 # If message is empty, then stdin will be logged.
    69 CT_DoLog() {
    70     local max_level LEVEL level cur_l cur_L
    71     local l
    72     eval max_level="\${CT_LOG_LEVEL_${CT_LOG_LEVEL_MAX}}"
    73     # Set the maximum log level to DEBUG if we have none
    74     [ -z "${max_level}" ] && max_level=${CT_LOG_LEVEL_DEBUG}
    75 
    76     LEVEL="$1"; shift
    77     eval level="\${CT_LOG_LEVEL_${LEVEL}}"
    78 
    79     if [ $# -eq 0 ]; then
    80         cat -
    81     else
    82         echo "${@}"
    83     fi |( IFS="${CR}" # We want the full lines, even leading spaces
    84           _prog_bar_cpt=0
    85           _prog_bar[0]='/'
    86           _prog_bar[1]='-'
    87           _prog_bar[2]='\'
    88           _prog_bar[3]='|'
    89           indent=$((2*CT_STEP_COUNT))
    90           while read line; do
    91               case "${CT_LOG_SEE_TOOLS_WARN},${line}" in
    92                 y,*"warning:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    93                 y,*"WARNING:"*)         cur_L=WARN; cur_l=${CT_LOG_LEVEL_WARN};;
    94                 *"error:"*)             cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
    95                 *"make["*"]: *** ["*)   cur_L=ERROR; cur_l=${CT_LOG_LEVEL_ERROR};;
    96                 *)                      cur_L="${LEVEL}"; cur_l="${level}";;
    97               esac
    98               # There will always be a log file (stdout, fd #1), be it /dev/null
    99               printf "[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}"
   100               if [ ${cur_l} -le ${max_level} ]; then
   101                   # Only print to console (fd #6) if log level is high enough.
   102                   printf "\r[%-5s]%*s%s%s\n" "${cur_L}" "${indent}" " " "${line}" >&6
   103               fi
   104               if [ "${CT_LOG_PROGRESS_BAR}" = "y" ]; then
   105                   printf "\r[%02d:%02d] %s " $((SECONDS/60)) $((SECONDS%60)) "${_prog_bar[$((_prog_bar_cpt/10))]}" >&6
   106                   _prog_bar_cpt=$(((_prog_bar_cpt+1)%40))
   107               fi
   108           done
   109         )
   110 
   111     return 0
   112 }
   113 
   114 # Execute an action, and log its messages
   115 # Usage: CT_DoExecLog <level> <[VAR=val...] command [parameters...]>
   116 CT_DoExecLog() {
   117     local level="$1"
   118     shift
   119     CT_DoLog DEBUG "==> Executing: '${@}'"
   120     "${@}" 2>&1 |CT_DoLog "${level}"
   121 }
   122 
   123 # Tail message to be logged whatever happens
   124 # Usage: CT_DoEnd <level>
   125 CT_DoEnd()
   126 {
   127     local level="$1"
   128     CT_STOP_DATE=$(CT_DoDate +%s%N)
   129     CT_STOP_DATE_HUMAN=$(CT_DoDate +%Y%m%d.%H%M%S)
   130     if [ "${level}" != "ERROR" ]; then
   131         CT_DoLog "${level:-INFO}" "Build completed at ${CT_STOP_DATE_HUMAN}"
   132     fi
   133     elapsed=$((CT_STOP_DATE-CT_STAR_DATE))
   134     elapsed_min=$((elapsed/(60*1000*1000*1000)))
   135     elapsed_sec=$(printf "%02d" $(((elapsed%(60*1000*1000*1000))/(1000*1000*1000))))
   136     elapsed_csec=$(printf "%02d" $(((elapsed%(1000*1000*1000))/(10*1000*1000))))
   137     CT_DoLog ${level:-INFO} "(elapsed: ${elapsed_min}:${elapsed_sec}.${elapsed_csec})"
   138 }
   139 
   140 # Abort the execution with an error message
   141 # Usage: CT_Abort <message>
   142 CT_Abort() {
   143     CT_DoLog ERROR "$1"
   144     exit 1
   145 }
   146 
   147 # Test a condition, and print a message if satisfied
   148 # Usage: CT_Test <message> <tests>
   149 CT_Test() {
   150     local ret
   151     local m="$1"
   152     shift
   153     test "$@" && CT_DoLog WARN "$m"
   154     return 0
   155 }
   156 
   157 # Test a condition, and abort with an error message if satisfied
   158 # Usage: CT_TestAndAbort <message> <tests>
   159 CT_TestAndAbort() {
   160     local m="$1"
   161     shift
   162     test "$@" && CT_Abort "$m"
   163     return 0
   164 }
   165 
   166 # Test a condition, and abort with an error message if not satisfied
   167 # Usage: CT_TestAndAbort <message> <tests>
   168 CT_TestOrAbort() {
   169     local m="$1"
   170     shift
   171     test "$@" || CT_Abort "$m"
   172     return 0
   173 }
   174 
   175 # Test the presence of a tool, or abort if not found
   176 # Usage: CT_HasOrAbort <tool>
   177 CT_HasOrAbort() {
   178     CT_TestAndAbort "'${1}' not found and needed for successful toolchain build." -z "$(CT_Which "${1}")"
   179     return 0
   180 }
   181 
   182 # Search a program: wrap "which" for those system where
   183 # "which" verbosely says there is no match (Mdk are such
   184 # suckers...)
   185 # Usage: CT_Which <filename>
   186 CT_Which() {
   187   which "$1" 2>/dev/null || true
   188 }
   189 
   190 # Get current date with nanosecond precision
   191 # On those system not supporting nanosecond precision, faked with rounding down
   192 # to the highest entire second
   193 # Usage: CT_DoDate <fmt>
   194 CT_DoDate() {
   195     date "$1" |sed -r -e 's/%N$/000000000/;'
   196 }
   197 
   198 CT_STEP_COUNT=1
   199 CT_STEP_MESSAGE[${CT_STEP_COUNT}]="<none>"
   200 # Memorise a step being done so that any error is caught
   201 # Usage: CT_DoStep <loglevel> <message>
   202 CT_DoStep() {
   203     local start=$(CT_DoDate +%s%N)
   204     CT_DoLog "$1" "================================================================="
   205     CT_DoLog "$1" "$2"
   206     CT_STEP_COUNT=$((CT_STEP_COUNT+1))
   207     CT_STEP_LEVEL[${CT_STEP_COUNT}]="$1"; shift
   208     CT_STEP_START[${CT_STEP_COUNT}]="${start}"
   209     CT_STEP_MESSAGE[${CT_STEP_COUNT}]="$1"
   210     return 0
   211 }
   212 
   213 # End the step just being done
   214 # Usage: CT_EndStep
   215 CT_EndStep() {
   216     local stop=$(CT_DoDate +%s%N)
   217     local duration=$(printf "%032d" $((stop-${CT_STEP_START[${CT_STEP_COUNT}]})) |sed -r -e 's/([[:digit:]]{2})[[:digit:]]{7}$/\.\1/; s/^0+//; s/^\./0\./;')
   218     local elapsed=$(printf "%02d:%02d" $((SECONDS/60)) $((SECONDS%60)))
   219     local level="${CT_STEP_LEVEL[${CT_STEP_COUNT}]}"
   220     local message="${CT_STEP_MESSAGE[${CT_STEP_COUNT}]}"
   221     CT_STEP_COUNT=$((CT_STEP_COUNT-1))
   222     CT_DoLog "${level}" "${message}: done in ${duration}s (at ${elapsed})"
   223     return 0
   224 }
   225 
   226 # Pushes into a directory, and pops back
   227 CT_Pushd() {
   228     pushd "$1" >/dev/null 2>&1
   229 }
   230 CT_Popd() {
   231     popd >/dev/null 2>&1
   232 }
   233 
   234 # Creates a temporary directory
   235 # $1: variable to assign to
   236 # Usage: CT_MktempDir foo
   237 CT_MktempDir() {
   238     # Some mktemp do not allow more than 6 Xs
   239     eval "$1"=$(mktemp -q -d "${CT_BUILD_DIR}/tmp.XXXXXX")
   240     CT_TestOrAbort "Could not make temporary directory" -n "${!1}" -a -d "${!1}"
   241     CT_DoLog DEBUG "Made temporary directory '${!1}'"
   242     return 0
   243 }
   244 
   245 # Removes one or more directories, even if it is read-only, or its parent is
   246 # Usage: CT_DoForceRmdir dir [...]
   247 CT_DoForceRmdir() {
   248     local dir
   249     local mode
   250     for dir in "${@}"; do
   251         [ -d "${dir}" ] || continue
   252         mode="$(stat -c '%a' "${dir}")"
   253         CT_DoExecLog ALL chmod -R u+w "$(dirname "${dir}")"
   254         CT_DoExecLog ALL rm -rf "${dir}"
   255         CT_DoExecLog ALL chmod -R ${mode} "$(dirname "${dir}")"
   256     done
   257 }
   258 
   259 # Echoes the specified string on stdout until the pipe breaks.
   260 # Doesn't fail
   261 # $1: string to echo
   262 # Usage: CT_DoYes "" |make oldconfig
   263 CT_DoYes() {
   264     yes "$1" || true
   265 }
   266 
   267 # Get the file name extension of a component
   268 # Usage: CT_GetFileExtension <component_name-component_version> [extension]
   269 # If found, echoes the extension to stdout
   270 # If not found, echoes nothing on stdout.
   271 CT_GetFileExtension() {
   272     local ext
   273     local file="$1"
   274     shift
   275     local first_ext="$1"
   276 
   277     # we need to also check for an empty extension for those very
   278     # peculiar components that don't have one (such as sstrip from
   279     # buildroot).
   280     for ext in ${first_ext} .tar.gz .tar.bz2 .tgz .tar ''; do
   281         if [ -f "${CT_TARBALLS_DIR}/${file}${ext}" ]; then
   282             echo "${ext}"
   283             break
   284         fi
   285     done
   286 
   287     return 0
   288 }
   289 
   290 # Set environment for proxy access
   291 # Usage: CT_DoSetProxy <proxy_type>
   292 # where proxy_type is one of 'http', 'sockssys', 'socks4' or 'socks5',
   293 # or empty (to not change proxy settings).
   294 CT_DoSetProxy() {
   295     case "${1}" in
   296         http)
   297             http_proxy="http://"
   298             case  "${CT_PROXY_USER}:${CT_PROXY_PASS}" in
   299                 :)      ;;
   300                 :*)     http_proxy="${http_proxy}:${CT_PROXY_PASS}@";;
   301                 *:)     http_proxy="${http_proxy}${CT_PROXY_USER}@";;
   302                 *:*)    http_proxy="${http_proxy}${CT_PROXY_USER}:${CT_PROXY_PASS}@";;
   303             esac
   304             export http_proxy="${http_proxy}${CT_PROXY_HOST}:${CT_PROXY_PORT}/"
   305             export https_proxy="${http_proxy}"
   306             export ftp_proxy="${http_proxy}"
   307             CT_DoLog DEBUG "http_proxy='${http_proxy}'"
   308             ;;
   309         sockssys)
   310             CT_HasOrAbort tsocks
   311             . tsocks -on
   312             ;;
   313         socks*)
   314             # Remove any lingering config file from any previous run
   315             rm -f "${CT_BUILD_DIR}/tsocks.conf"
   316             # Find all interfaces and build locally accessible networks
   317             server_ip=$(ping -c 1 -W 2 "${CT_PROXY_HOST}" |head -n 1 |sed -r -e 's/^[^\(]+\(([^\)]+)\).*$/\1/;' || true)
   318             CT_TestOrAbort "SOCKS proxy '${CT_PROXY_HOST}' has no IP." -n "${server_ip}"
   319             /sbin/ifconfig |gawk -v server_ip="${server_ip}" '
   320                 BEGIN {
   321                     split( server_ip, tmp, "\\." );
   322                     server_ip_num = tmp[1] * 2^24 + tmp[2] * 2^16 + tmp[3] * 2^8 + tmp[4] * 2^0;
   323                     pairs = 0;
   324                 }
   325 
   326                 $0 ~ /^[[:space:]]*inet addr:/ {
   327                     split( $2, tmp, ":|\\." );
   328                     if( ( tmp[2] == 127 ) && ( tmp[3] == 0 ) && ( tmp[4] == 0 ) && ( tmp[5] == 1 ) ) {
   329                         /* Skip 127.0.0.1, it'\''s taken care of by tsocks itself */
   330                         next;
   331                     }
   332                     ip_num = tmp[2] * 2^24 + tmp[3] * 2^16 + tmp[4] * 2 ^8 + tmp[5] * 2^0;
   333                     i = 32;
   334                     do {
   335                         i--;
   336                         mask = 2^32 - 2^i;
   337                     } while( (i!=0) && ( and( server_ip_num, mask ) == and( ip_num, mask ) ) );
   338                     mask = and( 0xFFFFFFFF, lshift( mask, 1 ) );
   339                     if( (i!=0) && (mask!=0) ) {
   340                         masked_ip = and( ip_num, mask );
   341                         for( i=0; i<pairs; i++ ) {
   342                             if( ( masked_ip == ips[i] ) && ( mask == masks[i] ) ) {
   343                                 next;
   344                             }
   345                         }
   346                         ips[pairs] = masked_ip;
   347                         masks[pairs] = mask;
   348                         pairs++;
   349                         printf( "local = %d.%d.%d.%d/%d.%d.%d.%d\n",
   350                                 and( 0xFF, masked_ip / 2^24 ),
   351                                 and( 0xFF, masked_ip / 2^16 ),
   352                                 and( 0xFF, masked_ip / 2^8 ),
   353                                 and( 0xFF, masked_ip / 2^0 ),
   354                                 and( 0xFF, mask / 2^24 ),
   355                                 and( 0xFF, mask / 2^16 ),
   356                                 and( 0xFF, mask / 2^8 ),
   357                                 and( 0xFF, mask / 2^0 ) );
   358                     }
   359                 }
   360             ' >"${CT_BUILD_DIR}/tsocks.conf"
   361             ( echo "server = ${server_ip}";
   362               echo "server_port = ${CT_PROXY_PORT}";
   363               [ -n "${CT_PROXY_USER}"   ] && echo "default_user=${CT_PROXY_USER}";
   364               [ -n "${CT_PROXY_PASS}" ] && echo "default_pass=${CT_PROXY_PASS}";
   365             ) >>"${CT_BUILD_DIR}/tsocks.conf"
   366             case "${CT_PROXY_TYPE/socks}" in
   367                 4|5) proxy_type="${CT_PROXY_TYPE/socks}";;
   368                 auto)
   369                     reply=$(inspectsocks "${server_ip}" "${CT_PROXY_PORT}" 2>&1 || true)
   370                     case "${reply}" in
   371                         *"server is a version 4 socks server") proxy_type=4;;
   372                         *"server is a version 5 socks server") proxy_type=5;;
   373                         *) CT_Abort "Unable to determine SOCKS proxy type for '${CT_PROXY_HOST}:${CT_PROXY_PORT}'"
   374                     esac
   375                     ;;
   376             esac
   377             echo "server_type = ${proxy_type}" >> "${CT_BUILD_DIR}/tsocks.conf"
   378             CT_HasOrAbort tsocks
   379             # If tsocks was found, then validateconf is present (distributed with tsocks).
   380             CT_DoExecLog DEBUG validateconf -f "${CT_BUILD_DIR}/tsocks.conf"
   381             export TSOCKS_CONF_FILE="${CT_BUILD_DIR}/tsocks.conf"
   382             . tsocks -on
   383             ;;
   384     esac
   385 }
   386 
   387 # Download an URL using wget
   388 # Usage: CT_DoGetFileWget <URL>
   389 CT_DoGetFileWget() {
   390     # Need to return true because it is legitimate to not find the tarball at
   391     # some of the provided URLs (think about snapshots, different layouts for
   392     # different gcc versions, etc...)
   393     # Some (very old!) FTP server might not support the passive mode, thus
   394     # retry without
   395     # With automated download as we are doing, it can be very dangerous to use
   396     # -c to continue the downloads. It's far better to simply overwrite the
   397     # destination file
   398     # Some company networks have firewalls to connect to the internet, but it's
   399     # not easy to detect them, and wget does not timeout by default while
   400     # connecting, so force a global ${CT_CONNECT_TIMEOUT}-second timeout.
   401     wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 --passive-ftp "$1"    \
   402     || wget -T ${CT_CONNECT_TIMEOUT} -nc --progress=dot:binary --tries=3 "$1"               \
   403     || true
   404 }
   405 
   406 # Download an URL using curl
   407 # Usage: CT_DoGetFileCurl <URL>
   408 CT_DoGetFileCurl() {
   409     # Note: comments about wget method (above) are also valid here
   410     # Plus: no good progress indicator is available with curl,
   411     #       so output is consigned to oblivion
   412     curl --ftp-pasv -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} >/dev/null    \
   413     || curl -O --retry 3 "$1" --connect-timeout ${CT_CONNECT_TIMEOUT} >/dev/null            \
   414     || true
   415 }
   416 
   417 _wget=$(CT_Which wget)
   418 _curl=$(CT_Which curl)
   419 # Wrapper function to call one of curl or wget
   420 # Usage: CT_DoGetFile <URL>
   421 CT_DoGetFile() {
   422     case "${_wget},${_curl}" in
   423         ,)  CT_Abort "Could find neither wget nor curl";;
   424         ,*) CT_DoExecLog ALL CT_DoGetFileCurl "$1" 2>&1;;
   425         *)  CT_DoExecLog ALL CT_DoGetFileWget "$1" 2>&1;;
   426     esac
   427 }
   428 
   429 # This function tries to retrieve a tarball form a local directory
   430 # Usage: CT_GetLocal <basename> [.extension]
   431 CT_GetLocal() {
   432     local basename="$1"
   433     local first_ext="$2"
   434     local ext
   435 
   436     # Do we already have it in *our* tarballs dir?
   437     ext=$(CT_GetFileExtension "${basename}" ${first_ext})
   438     if [ -n "${ext}" ]; then
   439         CT_DoLog DEBUG "Already have '${basename}'"
   440         return 0
   441     fi
   442 
   443     if [ -n "${CT_LOCAL_TARBALLS_DIR}" ]; then
   444         CT_DoLog DEBUG "Trying to retrieve an already downloaded copy of '${basename}'"
   445         # We'd rather have a bzip2'ed tarball, then gzipped tarball, plain tarball,
   446         # or, as a failover, a file without extension.
   447         # Try local copy first, if it exists
   448         for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   449             CT_DoLog DEBUG "Trying '${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}'"
   450             if [ -r "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" -a \
   451                  "${CT_FORCE_DOWNLOAD}" != "y" ]; then
   452                 CT_DoLog DEBUG "Got '${basename}' from local storage"
   453                 CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}${ext}" "${CT_TARBALLS_DIR}/${basename}${ext}"
   454                 return 0
   455             fi
   456         done
   457     fi
   458     return 1
   459 }
   460 
   461 # This function saves the specified to local storage if possible,
   462 # and if so, symlinks it for later usage
   463 # Usage: CT_SaveLocal </full/path/file.name>
   464 CT_SaveLocal() {
   465     local file="$1"
   466     local basename="${file##*/}"
   467 
   468     if [ "${CT_SAVE_TARBALLS}" = "y" ]; then
   469         CT_DoLog EXTRA "Saving '${basename}' to local storage"
   470         # The file may already exist if downloads are forced: remove it first
   471         CT_DoExecLog ALL rm -f "${CT_LOCAL_TARBALLS_DIR}/${basename}"
   472         CT_DoExecLog ALL mv -f "${file}" "${CT_LOCAL_TARBALLS_DIR}"
   473         CT_DoExecLog ALL ln -s "${CT_LOCAL_TARBALLS_DIR}/${basename}" "${file}"
   474     fi
   475 }
   476 
   477 # Download the file from one of the URLs passed as argument
   478 # Usage: CT_GetFile <basename> [.extension] <url> [url ...]
   479 CT_GetFile() {
   480     local ext
   481     local url
   482     local file="$1"
   483     local first_ext
   484     shift
   485     # If next argument starts with a dot, then this is not an URL,
   486     # and we can consider that it is a preferred extension.
   487     case "$1" in
   488         .*) first_ext="$1"
   489             shift
   490             ;;
   491     esac
   492 
   493     # Does it exist localy?
   494     CT_GetLocal "${file}" ${first_ext} && return 0 || true
   495     # No, it does not...
   496 
   497     # Are downloads allowed ?
   498     CT_TestAndAbort "File '${file}' not present locally, and downloads are not allowed" "${CT_FORBID_DOWNLOAD}" = "y"
   499 
   500     # Try to retrieve the file
   501     CT_DoLog EXTRA "Retrieving '${file}'"
   502     CT_Pushd "${CT_TARBALLS_DIR}"
   503 
   504     # Add URLs on the LAN mirror
   505     LAN_URLS=
   506     if [ "${CT_USE_MIRROR}" = "y" ]; then
   507         CT_TestOrAbort "Please set the LAN mirror hostname" -n "${CT_MIRROR_HOSTNAME}"
   508         CT_TestOrAbort "Please tell me where to find tarballs on the LAN mirror '${CT_MIRROR_HOSTNAME}'" -n "${CT_MIRROR_BASE}"
   509         LAN_URLS="${LAN_URLS} ${CT_MIRROR_SCHEME}://${CT_MIRROR_HOSTNAME}/${CT_MIRROR_BASE}/${file%-*}"
   510         LAN_URLS="${LAN_URLS} ${CT_MIRROR_SCHEME}://${CT_MIRROR_HOSTNAME}/${CT_MIRROR_BASE}"
   511 
   512         if [ "${CT_PREFER_MIRROR}" = "y" ]; then
   513             CT_DoLog DEBUG "Pre-pending LAN mirror URLs"
   514             URLS="${LAN_URLS} ${@}"
   515         else
   516             CT_DoLog DEBUG "Appending LAN mirror URLs"
   517             URLS="${@} ${LAN_URLS}"
   518         fi
   519     fi
   520 
   521     # Scan all URLs in turn, and try to grab a tarball from there
   522     CT_DoSetProxy ${CT_PROXY_TYPE}
   523     for ext in ${first_ext} .tar.bz2 .tar.gz .tgz .tar ''; do
   524         # Try all urls in turn
   525         for url in ${URLS}; do
   526             CT_DoLog DEBUG "Trying '${url}/${file}${ext}'"
   527             CT_DoGetFile "${url}/${file}${ext}"
   528             if [ -f "${file}${ext}" ]; then
   529                 CT_DoLog DEBUG "Got '${file}' from the Internet"
   530                 CT_SaveLocal "${CT_TARBALLS_DIR}/${file}${ext}"
   531                 return 0
   532             fi
   533         done
   534     done
   535     CT_Popd
   536 
   537     CT_Abort "Could not retrieve '${file}'."
   538 }
   539 
   540 # Checkout from CVS, and build the associated tarball
   541 # The tarball will be called ${basename}.tar.bz2
   542 # Prerequisite: either the server does not require password,
   543 # or the user must already be logged in.
   544 # 'tag' is the tag to retrieve. Must be specified, but can be empty.
   545 # If dirname is specified, then module will be renamed to dirname
   546 # prior to building the tarball.
   547 # Usage: CT_GetCVS <basename> <url> <module> <tag> [dirname]
   548 CT_GetCVS() {
   549     local basename="$1"
   550     local uri="$2"
   551     local module="$3"
   552     local tag="${4:+-r ${4}}"
   553     local dirname="$5"
   554     local tmp_dir
   555 
   556     # Does it exist localy?
   557     CT_GetLocal "${basename}" && return 0 || true
   558     # No, it does not...
   559 
   560     # Are downloads allowed ?
   561     CT_TestAndAbort "File '${file}' not present locally, and downloads are not allowed" "${CT_FORBID_DOWNLOAD}" = "y"
   562 
   563     CT_DoLog EXTRA "Retrieving '${basename}'"
   564 
   565     CT_MktempDir tmp_dir
   566     CT_Pushd "${tmp_dir}"
   567 
   568     CT_DoSetProxy ${CT_PROXY_TYPE}
   569     CT_DoExecLog ALL cvs -z 9 -d "${uri}" co -P ${tag} "${module}"
   570     [ -n "${dirname}" ] && CT_DoExecLog ALL mv "${module}" "${dirname}"
   571     CT_DoExecLog ALL tar cjf "${CT_TARBALLS_DIR}/${basename}.tar.bz2" "${dirname:-${module}}"
   572     CT_SaveLocal "${CT_TARBALLS_DIR}/${basename}.tar.bz2"
   573 
   574     CT_Popd
   575     CT_DoExecLog ALL rm -rf "${tmp_dir}"
   576 }
   577 
   578 # Extract a tarball
   579 # Some tarballs need to be extracted in specific places. Eg.: glibc addons
   580 # must be extracted in the glibc directory; uCLibc locales must be extracted
   581 # in the extra/locale sub-directory of uClibc. This is taken into account
   582 # by the caller, that did a 'cd' into the correct path before calling us
   583 # and sets nochdir to 'nochdir'.
   584 # Usage: CT_Extract <basename> [nochdir]
   585 CT_Extract() {
   586     local basename="$1"
   587     local nochdir="$2"
   588     local ext=$(CT_GetFileExtension "${basename}")
   589     CT_TestAndAbort "'${basename}' not found in '${CT_TARBALLS_DIR}'" -z "${ext}"
   590     local full_file="${CT_TARBALLS_DIR}/${basename}${ext}"
   591 
   592     # Check if already extracted
   593     if [ -e "${CT_SRC_DIR}/.${basename}.extracted" ]; then
   594         CT_DoLog DEBUG "Already extracted '${basename}'"
   595         return 0
   596     fi
   597 
   598     [ "${nochdir}" = "nochdir" ] || CT_Pushd "${CT_SRC_DIR}"
   599 
   600     CT_DoLog EXTRA "Extracting '${basename}'"
   601     case "${ext}" in
   602         .tar.bz2)     CT_DoExecLog ALL tar xvjf "${full_file}";;
   603         .tar.gz|.tgz) CT_DoExecLog ALL tar xvzf "${full_file}";;
   604         .tar)         CT_DoExecLog ALL tar xvf  "${full_file}";;
   605         *)            CT_Abort "Don't know how to handle '${basename}${ext}': unknown extension" ;;
   606     esac
   607 
   608     touch "${CT_SRC_DIR}/.${basename}.extracted"
   609 
   610     [ "${nochdir}" = "nochdir" ] || CT_Popd
   611 }
   612 
   613 # Patches the specified component
   614 # Usage: CT_Patch <basename> [nochdir]
   615 CT_Patch() {
   616     local basename="$1"
   617     local nochdir="$2"
   618     local base_file="${basename%%-*}"
   619     local ver_file="${basename#*-}"
   620     local official_patch_dir
   621     local custom_patch_dir
   622 
   623     # Check if already patched
   624     if [ -e "${CT_SRC_DIR}/.${basename}.patched" ]; then
   625         CT_DoLog DEBUG "Already patched '${basename}'"
   626         return 0
   627     fi
   628 
   629     [ "${nochdir}" = "nochdir" ] || CT_Pushd "${CT_SRC_DIR}/${basename}"
   630 
   631     CT_DoLog EXTRA "Patching '${basename}'"
   632 
   633     official_patch_dir=
   634     custom_patch_dir=
   635     [ "${CT_CUSTOM_PATCH_ONLY}" = "y" ] || official_patch_dir="${CT_LIB_DIR}/patches/${base_file}/${ver_file}"
   636     [ "${CT_CUSTOM_PATCH}" = "y" ] && custom_patch_dir="${CT_CUSTOM_PATCH_DIR}/${base_file}/${ver_file}"
   637     for patch_dir in "${official_patch_dir}" "${custom_patch_dir}"; do
   638         if [ -n "${patch_dir}" -a -d "${patch_dir}" ]; then
   639             for p in "${patch_dir}"/*.patch; do
   640                 if [ -f "${p}" ]; then
   641                     CT_DoLog DEBUG "Applying patch '${p}'"
   642                     CT_DoExecLog ALL patch -g0 -F1 -p1 -f <"${p}"
   643                     CT_TestAndAbort "Failed while applying patch file '${p}'" ${PIPESTATUS[0]} -ne 0
   644                 fi
   645             done
   646         fi
   647     done
   648 
   649     if [ "${CT_OVERIDE_CONFIG_GUESS_SUB}" = "y" ]; then
   650         CT_DoLog ALL "Overiding config.guess and config.sub"
   651         for cfg in config_guess config_sub; do
   652             eval ${cfg}="${CT_LIB_DIR}/scripts/${cfg/_/.}"
   653             [ -e "${CT_TOP_DIR}/scripts/${cfg/_/.}" ] && eval ${cfg}="${CT_TOP_DIR}/scripts/${cfg/_/.}"
   654             # Can't use CT_DoExecLog because of the '{} \;' to be passed un-mangled to find
   655             find . -type f -name "${cfg/_/.}" -exec cp -v "${!cfg}" {} \; |CT_DoLog ALL
   656         done
   657     fi
   658 
   659     touch "${CT_SRC_DIR}/.${basename}.patched"
   660 
   661     [ "${nochdir}" = "nochdir" ] || CT_Popd
   662 }
   663 
   664 # Two wrappers to call config.(guess|sub) either from CT_TOP_DIR or CT_LIB_DIR.
   665 # Those from CT_TOP_DIR, if they exist, will be be more recent than those from CT_LIB_DIR.
   666 CT_DoConfigGuess() {
   667     if [ -x "${CT_TOP_DIR}/scripts/config.guess" ]; then
   668         "${CT_TOP_DIR}/scripts/config.guess"
   669     else
   670         "${CT_LIB_DIR}/scripts/config.guess"
   671     fi
   672 }
   673 
   674 CT_DoConfigSub() {
   675     if [ -x "${CT_TOP_DIR}/scripts/config.sub" ]; then
   676         "${CT_TOP_DIR}/scripts/config.sub" "$@"
   677     else
   678         "${CT_LIB_DIR}/scripts/config.sub" "$@"
   679     fi
   680 }
   681 
   682 # Compute the target tuple from what is provided by the user
   683 # Usage: CT_DoBuildTargetTuple
   684 # In fact this function takes the environment variables to build the target
   685 # tuple. It is needed both by the normal build sequence, as well as the
   686 # sample saving sequence.
   687 CT_DoBuildTargetTuple() {
   688     # Set the endianness suffix, and the default endianness gcc option
   689     case "${CT_ARCH_BE},${CT_ARCH_LE}" in
   690         y,) target_endian_eb=eb
   691             target_endian_el=
   692             CT_ARCH_ENDIAN_CFLAG="-mbig-endian"
   693             CT_ARCH_ENDIAN_LDFLAG="-EB"
   694             ;;
   695         ,y) target_endian_eb=
   696             target_endian_el=el
   697             CT_ARCH_ENDIAN_CFLAG="-mlittle-endian"
   698             CT_ARCH_ENDIAN_LDFLAG="-EL"
   699             ;;
   700     esac
   701 
   702     # Build the default architecture tuple part
   703     CT_TARGET_ARCH="${CT_ARCH}"
   704 
   705     # Set defaults for the system part of the tuple. Can be overriden
   706     # by architecture-specific values.
   707     case "${CT_LIBC}" in
   708         none)   CT_TARGET_SYS=elf;;
   709         *glibc) CT_TARGET_SYS=gnu;;
   710         uClibc) CT_TARGET_SYS=uclibc;;
   711     esac
   712 
   713     # Transform the ARCH into a kernel-understandable ARCH
   714     CT_KERNEL_ARCH="${CT_ARCH}"
   715 
   716     # Set the default values for ARCH, ABI, CPU, TUNE, FPU and FLOAT
   717     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
   718     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
   719     [ "${CT_ARCH_ARCH}"     ] && { CT_ARCH_ARCH_CFLAG="-march=${CT_ARCH_ARCH}";  CT_ARCH_WITH_ARCH="--with-arch=${CT_ARCH_ARCH}"; }
   720     [ "${CT_ARCH_ABI}"      ] && { CT_ARCH_ABI_CFLAG="-mabi=${CT_ARCH_ABI}";     CT_ARCH_WITH_ABI="--with-abi=${CT_ARCH_ABI}";    }
   721     [ "${CT_ARCH_CPU}"      ] && { CT_ARCH_CPU_CFLAG="-mcpu=${CT_ARCH_CPU}";     CT_ARCH_WITH_CPU="--with-cpu=${CT_ARCH_CPU}";    }
   722     [ "${CT_ARCH_TUNE}"     ] && { CT_ARCH_TUNE_CFLAG="-mtune=${CT_ARCH_TUNE}";  CT_ARCH_WITH_TUNE="--with-tune=${CT_ARCH_TUNE}"; }
   723     [ "${CT_ARCH_FPU}"      ] && { CT_ARCH_FPU_CFLAG="-mfpu=${CT_ARCH_FPU}";     CT_ARCH_WITH_FPU="--with-fpu=${CT_ARCH_FPU}";    }
   724     [ "${CT_ARCH_FLOAT_SW}" ] && { CT_ARCH_FLOAT_CFLAG="-msoft-float";           CT_ARCH_WITH_FLOAT="--with-float=soft";          }
   725 
   726     # Build the default kernel tuple part
   727     CT_TARGET_KERNEL="${CT_KERNEL}"
   728 
   729     # Overide the default values with the components specific settings
   730     CT_DoArchTupleValues
   731     CT_DoKernelTupleValues
   732 
   733     # Finish the target tuple construction
   734     CT_TARGET="${CT_TARGET_ARCH}-${CT_TARGET_VENDOR:-unknown}-${CT_TARGET_KERNEL}${CT_TARGET_KERNEL:+-}${CT_TARGET_SYS}"
   735 
   736     # Sanity checks
   737     __sed_alias=""
   738     if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
   739         __sed_alias=$(echo "${CT_TARGET}" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
   740     fi
   741     case ":${CT_TARGET_VENDOR}:${CT_TARGET_ALIAS}:${__sed_alias}:" in
   742       :*" "*:*:*:) CT_Abort "Don't use spaces in the vendor string, it breaks things.";;
   743       :*"-"*:*:*:) CT_Abort "Don't use dashes in the vendor string, it breaks things.";;
   744       :*:*" "*:*:) CT_Abort "Don't use spaces in the target alias, it breaks things.";;
   745       :*:*:*" "*:) CT_Abort "Don't use spaces in the target sed transform, it breaks things.";;
   746     esac
   747 
   748     # Canonicalise it
   749     CT_TARGET=$(CT_DoConfigSub "${CT_TARGET}")
   750 
   751     # Prepare the target CFLAGS
   752     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ENDIAN_CFLAG}"
   753     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ARCH_CFLAG}"
   754     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_ABI_CFLAG}"
   755     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_CPU_CFLAG}"
   756     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_TUNE_CFLAG}"
   757     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FPU_CFLAG}"
   758     CT_ARCH_TARGET_CFLAGS="${CT_ARCH_TARGET_CFLAGS} ${CT_ARCH_FLOAT_CFLAG}"
   759 
   760     # Now on for the target LDFLAGS
   761     CT_ARCH_TARGET_LDFLAGS="${CT_ARCH_TARGET_LDFLAGS} ${CT_ARCH_ENDIAN_LDFLAG}"
   762 }
   763 
   764 # This function does pause the build until the user strikes "Return"
   765 # Usage: CT_DoPause [optional_message]
   766 CT_DoPause() {
   767     local foo
   768     local message="${1:-Pausing for your pleasure}"
   769     CT_DoLog INFO "${message}"
   770     read -p "Press 'Enter' to continue, or Ctrl-C to stop..." foo >&6
   771     return 0
   772 }
   773 
   774 # This function saves the state of the toolchain to be able to restart
   775 # at any one point
   776 # Usage: CT_DoSaveState <next_step_name>
   777 CT_DoSaveState() {
   778 	[ "${CT_DEBUG_CT_SAVE_STEPS}" = "y" ] || return 0
   779     local state_name="$1"
   780     local state_dir="${CT_STATE_DIR}/${state_name}"
   781 
   782     CT_DoLog DEBUG "Saving state to restart at step '${state_name}'..."
   783 
   784     rm -rf "${state_dir}"
   785     mkdir -p "${state_dir}"
   786 
   787     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   788         y)  tar_opt=z; tar_ext=.gz;;
   789         *)  tar_opt=;  tar_ext=;;
   790     esac
   791 
   792     CT_DoLog DEBUG "  Saving environment and aliases"
   793     # We must omit shell functions, and some specific bash variables
   794     # that break when restoring the environment, later. We could do
   795     # all the processing in the gawk script, but a sed is easier...
   796     set |gawk '
   797               BEGIN { _p = 1; }
   798               $0~/^[^ ]+ \(\)/ { _p = 0; }
   799               _p == 1
   800               $0 == "}" { _p = 1; }
   801               ' |sed -r -e '/^BASH_(ARGC|ARGV|LINENO|SOURCE|VERSINFO)=/d;
   802                            /^(UID|EUID)=/d;
   803                            /^(FUNCNAME|GROUPS|PPID|SHELLOPTS)=/d;' >"${state_dir}/env.sh"
   804 
   805     CT_DoLog DEBUG "  Saving CT_CC_CORE_STATIC_PREFIX_DIR='${CT_CC_CORE_STATIC_PREFIX_DIR}'"
   806     CT_Pushd "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   807     CT_DoExecLog DEBUG tar cv${tar_opt}f "${state_dir}/cc_core_static_prefix_dir.tar${tar_ext}" .
   808     CT_Popd
   809 
   810     CT_DoLog DEBUG "  Saving CT_CC_CORE_SHARED_PREFIX_DIR='${CT_CC_CORE_SHARED_PREFIX_DIR}'"
   811     CT_Pushd "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   812     CT_DoExecLog DEBUG tar cv${tar_opt}f "${state_dir}/cc_core_shared_prefix_dir.tar${tar_ext}" .
   813     CT_Popd
   814 
   815     CT_DoLog DEBUG "  Saving CT_PREFIX_DIR='${CT_PREFIX_DIR}'"
   816     CT_Pushd "${CT_PREFIX_DIR}"
   817     CT_DoExecLog DEBUG tar cv${tar_opt}f "${state_dir}/prefix_dir.tar${tar_ext}" --exclude '*.log' .
   818     CT_Popd
   819 
   820     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   821         CT_DoLog DEBUG "  Saving log file"
   822         exec >/dev/null
   823         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   824             y)  gzip -3 -c "${CT_LOG_FILE}"  >"${state_dir}/log.gz";;
   825             *)  cat "${CT_LOG_FILE}" >"${state_dir}/log";;
   826         esac
   827         exec >>"${CT_LOG_FILE}"
   828     fi
   829 }
   830 
   831 # This function restores a previously saved state
   832 # Usage: CT_DoLoadState <state_name>
   833 CT_DoLoadState(){
   834     local state_name="$1"
   835     local state_dir="${CT_STATE_DIR}/${state_name}"
   836     local old_RESTART="${CT_RESTART}"
   837     local old_STOP="${CT_STOP}"
   838 
   839     CT_TestOrAbort "The previous build did not reach the point where it could be restarted at '${CT_RESTART}'" -d "${state_dir}"
   840 
   841     # We need to do something special with the log file!
   842     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   843         exec >"${state_dir}/tail.log"
   844     fi
   845     CT_DoLog INFO "Restoring state at step '${state_name}', as requested."
   846 
   847     case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   848         y)  tar_opt=z; tar_ext=.gz;;
   849         *)  tar_opt=;  tar_ext=;;
   850     esac
   851 
   852     CT_DoLog DEBUG "  Removing previous build directories"
   853     chmod -R u+rwX "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   854     rm -rf         "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   855     mkdir -p       "${CT_PREFIX_DIR}" "${CT_CC_CORE_SHARED_PREFIX_DIR}" "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   856 
   857     CT_DoLog DEBUG "  Restoring CT_PREFIX_DIR='${CT_PREFIX_DIR}'"
   858     CT_Pushd "${CT_PREFIX_DIR}"
   859     CT_DoExecLog DEBUG tar xv${tar_opt}f "${state_dir}/prefix_dir.tar${tar_ext}"
   860     CT_Popd
   861 
   862     CT_DoLog DEBUG "  Restoring CT_CC_CORE_SHARED_PREFIX_DIR='${CT_CC_CORE_SHARED_PREFIX_DIR}'"
   863     CT_Pushd "${CT_CC_CORE_SHARED_PREFIX_DIR}"
   864     CT_DoExecLog DEBUG tar xv${tar_opt}f "${state_dir}/cc_core_shared_prefix_dir.tar${tar_ext}"
   865     CT_Popd
   866 
   867     CT_DoLog DEBUG "  Restoring CT_CC_CORE_STATIC_PREFIX_DIR='${CT_CC_CORE_STATIC_PREFIX_DIR}'"
   868     CT_Pushd "${CT_CC_CORE_STATIC_PREFIX_DIR}"
   869     CT_DoExecLog DEBUG tar xv${tar_opt}f "${state_dir}/cc_core_static_prefix_dir.tar${tar_ext}"
   870     CT_Popd
   871 
   872     # Restore the environment, discarding any error message
   873     # (for example, read-only bash internals)
   874     CT_DoLog DEBUG "  Restoring environment"
   875     . "${state_dir}/env.sh" >/dev/null 2>&1 || true
   876 
   877     # Restore the new RESTART and STOP steps
   878     CT_RESTART="${old_RESTART}"
   879     CT_STOP="${old_STOP}"
   880     unset old_stop old_restart
   881 
   882     if [ "${CT_LOG_TO_FILE}" = "y" ]; then
   883         CT_DoLog DEBUG "  Restoring log file"
   884         exec >/dev/null
   885         case "${CT_DEBUG_CT_SAVE_STEPS_GZIP}" in
   886             y)  zcat "${state_dir}/log.gz" >"${CT_LOG_FILE}";;
   887             *)  cat "${state_dir}/log" >"${CT_LOG_FILE}";;
   888         esac
   889         cat "${state_dir}/tail.log" >>"${CT_LOG_FILE}"
   890         exec >>"${CT_LOG_FILE}"
   891         rm -f "${state_dir}/tail.log"
   892     fi
   893 }
   894 
   895 do_finish() {
   896     CT_DoStep INFO "Cleaning-up the toolchain's directory"
   897 
   898     CT_DoLog EXTRA "Removing access to the build system tools"
   899     find "${CT_PREFIX_DIR}/bin" -name "${CT_BUILD}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   900     find "${CT_PREFIX_DIR}/bin" -name "${CT_HOST}-"'*' -exec rm -fv {} \; |CT_DoLog DEBUG
   901     CT_DoExecLog DEBUG rm -fv "${CT_PREFIX_DIR}/bin/makeinfo"
   902 
   903     if [ "${CT_BARE_METAL}" != "y" ]; then
   904         CT_DoLog EXTRA "Installing the populate helper"
   905         sed -r -e 's|@@CT_TARGET@@|'"${CT_TARGET}"'|g;' \
   906             "${CT_LIB_DIR}/scripts/populate.in"           \
   907             >"${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   908         CT_DoExecLog ALL chmod 755 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-populate"
   909     fi
   910 
   911     # Create the aliases to the target tools
   912     CT_DoLog EXTRA "Creating toolchain aliases"
   913     CT_Pushd "${CT_PREFIX_DIR}/bin"
   914     for t in "${CT_TARGET}-"*; do
   915         if [ -n "${CT_TARGET_ALIAS}" ]; then
   916             _t=$(echo "$t" |sed -r -e 's/^'"${CT_TARGET}"'-/'"${CT_TARGET_ALIAS}"'-/;')
   917             CT_DoExecLog ALL ln -sv "${t}" "${_t}"
   918         fi
   919         if [ -n "${CT_TARGET_ALIAS_SED_EXPR}" ]; then
   920             _t=$(echo "$t" |sed -r -e "${CT_TARGET_ALIAS_SED_EXPR}")
   921             CT_DoExecLog ALL ln -sv "${t}" "${_t}"
   922         fi
   923     done
   924     CT_Popd
   925 
   926     # Remove the generated documentation files
   927     if [ "${CT_REMOVE_DOCS}" = "y" ]; then
   928         CT_DoLog EXTRA "Removing installed documentation"
   929         CT_DoForceRmdir "${CT_PREFIX_DIR}/"{,usr/}{man,info}
   930         CT_DoForceRmdir "${CT_SYSROOT_DIR}/"{,usr/}{man,info}
   931         CT_DoForceRmdir "${CT_DEBUG_INSTALL_DIR}/"{,usr/}{man,info}
   932     fi
   933 
   934     CT_EndStep
   935 }