scripts/crosstool.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 09 13:11:04 2007 +0000 (2007-05-09)
changeset 82 a1c93f975268
parent 81 a20be197429a
child 83 286b5a6938ac
permissions -rwxr-xr-x
Again, some progress bar optimisation.
     1 #!/bin/bash
     2 # Copyright 2007 Yann E. MORIN
     3 # Licensed under the GPL v2. See COPYING in the root of this package.
     4 
     5 # This is the main entry point to crosstool
     6 # This will:
     7 #   - download, extract and patch the toolchain components
     8 #   - build and install each components in turn
     9 #   - and eventually test the resulting toolchain
    10 
    11 # What this file does is prepare the environment, based upon the user-choosen
    12 # options. It also checks the existing environment for un-friendly variables,
    13 # and checks for needed tools. It eventually calls the main build script.
    14 
    15 # User must set CT_TOP_DIR in is environment!
    16 # Once we can build out-of-tree, then this will have to go.
    17 if [ -z "${CT_TOP_DIR}" -o ! -d "${CT_TOP_DIR}" ]; then
    18     # We don't have the functions right now, because we don't have CT_TOP_DIR.
    19     # Do the print stuff by hand:
    20     echo "CT_TOP_DIR not set. You must set CT_TOP_DIR to the top directory where crosstool is installed."
    21     exit 1
    22 fi
    23 
    24 # Parse the common functions
    25 . "${CT_TOP_DIR}/scripts/functions"
    26 
    27 CT_STAR_DATE=`CT_DoDate +%s%N`
    28 CT_STAR_DATE_HUMAN=`CT_DoDate +%Y%m%d.%H%M%S`
    29 
    30 # Log to a temporary file until we have built our environment
    31 CT_ACTUAL_LOG_FILE="${CT_TOP_DIR}/$$.log"
    32 
    33 # CT_TOP_DIR should be an absolute path.
    34 CT_TOP_DIR="`CT_MakeAbsolutePath \"${CT_TOP_DIR}\"`"
    35 
    36 # Parse the configuration file
    37 CT_TestOrAbort "Configuration file not found. Please create one." -f "${CT_TOP_DIR}/.config"
    38 . "${CT_TOP_DIR}/.config"
    39 
    40 # Override the color scheme if needed
    41 if [ "${CT_LOG_USE_COLORS}" = "y" ]; then
    42     CT_ERROR_COLOR="${_A_NOR}${_A_BRI}${_F_RED}"
    43     CT_WARN_COLOR="${_A_NOR}${_A_BRI}${_F_YEL}"
    44     CT_INFO_COLOR="${_A_NOR}${_A_BRI}${_F_GRN}"
    45     CT_EXTRA_COLOR="${_A_NOR}${_A_DIM}${_F_GRN}"
    46     CT_DEBUG_COLOR="${_A_NOR}${_A_BRI}${_F_BLU}"
    47     CT_ALL_COLOR="${_A_NOR}${_A_DIM}${_F_WHI}"
    48     CT_NORMAL_COLOR="${_A_NOR}"
    49 else
    50     CT_ERROR_COLOR=
    51     CT_WARN_COLOR=
    52     CT_INFO_COLOR=
    53     CT_EXTRA_COLOR=
    54     CT_DEBUG_COLOR=
    55     CT_ALL_COLOR=
    56     CT_NORMAL_COLOR=
    57 fi
    58 
    59 # Yes! We can do full logging from now on!
    60 CT_DoLog INFO "Build started ${CT_STAR_DATE_HUMAN}"
    61 
    62 # renice oursleves
    63 renice ${CT_NICE} $$ |CT_DoLog DEBUG
    64 
    65 # Some sanity checks in the environment and needed tools
    66 CT_DoLog INFO "Checking environment sanity"
    67 
    68 # Enable known ordering of files in directory listings:
    69 CT_Test "Crosstool-NG might not work as expected with LANG=\"${LANG}\"" -n "${LANG}"
    70 case "${LC_COLLATE},${LC_ALL}" in
    71   # These four combinations are known to sort files in the correct order:
    72   fr_FR*,)  ;;
    73   en_US*,)  ;;
    74   *,fr_FR*) ;;
    75   *,en_US*) ;;
    76   # Anything else is destined to be borked if not gracefuly handled:
    77   *) CT_DoLog WARN "Either LC_COLLATE=\"${LC_COLLATE}\" or LC_ALL=\"${LC_ALL}\" is not supported."
    78      export LC_ALL=`locale -a |egrep "^(fr_FR|en_US)" |head -n 1`
    79      CT_TestOrAbort "Neither en_US* nor fr_FR* locales found on your system." -n "${LC_ALL}"
    80      CT_DoLog WARN "Forcing to known working LC_ALL=\"${LC_ALL}\"."
    81      ;;
    82 esac
    83 
    84 # Other environment sanity checks
    85 CT_TestAndAbort "Don't set LD_LIBRARY_PATH. It screws up the build." -n "${LD_LIBRARY_PATH}"
    86 CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}"
    87 CT_TestAndAbort "Don't set CXXFLAGS. It screws up the build." -n "${CXXFLAGS}"
    88 CT_Test "GREP_OPTIONS screws up the build. Resetting." -n "${GREP_OPTIONS}"
    89 GREP_OPTIONS=
    90 CT_HasOrAbort awk
    91 CT_HasOrAbort sed
    92 CT_HasOrAbort bison
    93 CT_HasOrAbort flex
    94 
    95 CT_DoStep DEBUG "Dumping crosstool-NG configuration"
    96 cat ${CT_TOP_DIR}/.config |egrep '^(# |)CT_' |CT_DoLog DEBUG
    97 CT_EndStep
    98 
    99 CT_DoLog INFO "Building environment variables"
   100 
   101 # Target triplet: CT_TARGET needs a little love:
   102 CT_DoBuildTargetTriplet
   103 
   104 # Now, build up the variables from the user-configured options.
   105 CT_KERNEL_FILE="${CT_KERNEL}-${CT_KERNEL_VERSION}"
   106 CT_BINUTILS_FILE="binutils-${CT_BINUTILS_VERSION}"
   107 if [ "${CT_CC_USE_CORE}" != "y" ]; then
   108     CT_CC_CORE="${CT_CC}"
   109     CT_CC_CORE_VERSION="${CT_CC_VERSION}"
   110     CT_CC_CORE_EXTRA_CONFIG="${CT_CC_EXTRA_CONFIG}"
   111 fi
   112 CT_CC_CORE_FILE="${CT_CC_CORE}-${CT_CC_CORE_VERSION}"
   113 CT_CC_FILE="${CT_CC}-${CT_CC_VERSION}"
   114 CT_LIBC_FILE="${CT_LIBC}-${CT_LIBC_VERSION}"
   115 [ "${CT_ARCH_FLOAT_SW_LIBFLOAT}" = "y" ] && CT_LIBFLOAT_FILE="libfloat-990616"
   116 
   117 # Kludge: If any of the configured options needs CT_TARGET or CT_TOP_DIR,
   118 # then rescan the options file now:
   119 . "${CT_TOP_DIR}/.config"
   120 
   121 # Some more sanity checks now that we have all paths set up
   122 case "${CT_TARBALLS_DIR},${CT_SRC_DIR},${CT_BUILD_DIR},${CT_PREFIX_DIR},${CT_INSTALL_DIR}" in
   123     *" "*) CT_Abort "Don't use spaces in paths, it breaks things.";;
   124 esac
   125 
   126 # Note: we'll always install the core compiler in its own directory, so as to
   127 # not mix the two builds: core and final. Anyway, its generic, wether we use
   128 # a different compiler as core, or not.
   129 CT_CC_CORE_PREFIX_DIR="${CT_BUILD_DIR}/${CT_CC}-core"
   130 
   131 # Good, now grab a bit of informations on the system we're being run,
   132 # just in case something goes awok, and it's not our fault:
   133 CT_SYS_HOSTNAME=`hostname -f 2>/dev/null || true`
   134 # Hmmm. Some non-DHCP-enabled machines do not have an FQDN... Fall back to node name.
   135 CT_SYS_HOSTNAME="${CT_SYS_HOSTNAME:-`uname -n`}"
   136 CT_SYS_KERNEL=`uname -s`
   137 CT_SYS_REVISION=`uname -r`
   138 # MacOS X lacks '-o' :
   139 CT_SYS_OS=`uname -o || echo "Unknown (maybe MacOS-X)"`
   140 CT_SYS_MACHINE=`uname -m`
   141 CT_SYS_PROCESSOR=`uname -p`
   142 CT_SYS_USER="`id -un`"
   143 CT_SYS_DATE=`CT_DoDate +%Y%m%d.%H%M%S`
   144 CT_SYS_GCC=`gcc -dumpversion`
   145 CT_TOOLCHAIN_ID="crosstool-${CT_VERSION} build ${CT_SYS_DATE} by ${CT_SYS_USER}@${CT_SYS_HOSTNAME} for ${CT_TARGET}"
   146 
   147 # Check now if we can write to the destination directory:
   148 if [ -d "${CT_INSTALL_DIR}" ]; then
   149     CT_TestAndAbort "Destination directory \"${CT_INSTALL_DIR}\" is not removable" ! -w `dirname "${CT_INSTALL_DIR}"`
   150 fi
   151 
   152 # Get rid of pre-existing installed toolchain and previous build directories.
   153 # We need to do that _before_ we can safely log, because the log file will
   154 # most probably be in the toolchain directory.
   155 if [ -d "${CT_INSTALL_DIR}" ]; then
   156     mv "${CT_INSTALL_DIR}" "${CT_INSTALL_DIR}.$$"
   157     nohup rm -rf "${CT_INSTALL_DIR}.$$" >/dev/null 2>&1 &
   158 fi
   159 if [ -d "${CT_BUILD_DIR}" ]; then
   160     mv "${CT_BUILD_DIR}" "${CT_BUILD_DIR}.$$"
   161     nohup rm -rf "${CT_BUILD_DIR}.$$" >/dev/null 2>&1 &
   162 fi
   163 if [ "${CT_FORCE_EXTRACT}" = "y" -a -d "${CT_SRC_DIR}" ]; then
   164     mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.$$"
   165     nohup rm -rf "${CT_SRC_DIR}.$$" >/dev/null 2>&1 &
   166 fi
   167 mkdir -p "${CT_INSTALL_DIR}"
   168 mkdir -p "${CT_BUILD_DIR}"
   169 mkdir -p "${CT_TARBALLS_DIR}"
   170 mkdir -p "${CT_SRC_DIR}"
   171 
   172 # Make all path absolute, it so much easier!
   173 # Now we have had the directories created, we even will get rid of embedded .. in paths:
   174 CT_SRC_DIR="`CT_MakeAbsolutePath \"${CT_SRC_DIR}\"`"
   175 CT_TARBALLS_DIR="`CT_MakeAbsolutePath \"${CT_TARBALLS_DIR}\"`"
   176 
   177 # Redirect log to the actual log file now we can
   178 # It's quite understandable that the log file will be installed in the install
   179 # directory, so we must first ensure it exists and is writeable (above) before
   180 # we can log there
   181 case "${CT_LOG_TO_FILE},${CT_LOG_FILE}" in
   182     ,*)   rm -f "${CT_ACTUAL_LOG_FILE}"
   183           CT_ACTUAL_LOG_FILE=/dev/null
   184           ;;
   185     y,/*) mkdir -p "`dirname \"${CT_LOG_FILE}\"`"
   186           mv "${CT_ACTUAL_LOG_FILE}" "${CT_LOG_FILE}"
   187           CT_ACTUAL_LOG_FILE="${CT_LOG_FILE}"
   188           ;;
   189     y,*)  mkdir -p "`pwd`/`dirname \"${CT_LOG_FILE}\"`"
   190           mv "${CT_ACTUAL_LOG_FILE}" "`pwd`/${CT_LOG_FILE}"
   191           CT_ACTUAL_LOG_FILE="`pwd`/${CT_LOG_FILE}"
   192           ;;
   193 esac
   194 
   195 # Determine build system if not set by the user
   196 CT_Test "You did not specify the build system. Guessing." -z "${CT_BUILD}"
   197 CT_BUILD="`${CT_TOP_DIR}/tools/config.sub \"${CT_BUILD:-\`${CT_TOP_DIR}/tools/config.guess\`}\"`"
   198 
   199 # Arrange paths depending on wether we use sys-root or not.
   200 if [ "${CT_USE_SYSROOT}" = "y" ]; then
   201     CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}/sys-root"
   202     CT_HEADERS_DIR="${CT_SYSROOT_DIR}/usr/include"
   203     BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   204     CC_CORE_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   205     CC_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   206     LIBC_SYSROOT_ARG=""
   207     # glibc's prefix must be exactly /usr, else --with-sysroot'd gcc will get
   208     # confused when $sysroot/usr/include is not present.
   209     # Note: --prefix=/usr is magic!
   210     # See http://www.gnu.org/software/libc/FAQ.html#s-2.2
   211 else
   212     # plain old way. All libraries in prefix/target/lib
   213     CT_SYSROOT_DIR="${CT_PREFIX_DIR}/${CT_TARGET}"
   214     CT_HEADERS_DIR="${CT_SYSROOT_DIR}/include"
   215     # hack!  Always use --with-sysroot for binutils.
   216     # binutils 2.14 and later obey it, older binutils ignore it.
   217     # Lets you build a working 32->64 bit cross gcc
   218     BINUTILS_SYSROOT_ARG="--with-sysroot=${CT_SYSROOT_DIR}"
   219     # Use --with-headers, else final gcc will define disable_glibc while
   220     # building libgcc, and you'll have no profiling
   221     CC_CORE_SYSROOT_ARG="--without-headers"
   222     CC_SYSROOT_ARG="--with-headers=${CT_HEADERS_DIR}"
   223     LIBC_SYSROOT_ARG="prefix="
   224 fi
   225 
   226 # Prepare the 'lib' directories in sysroot, else the ../lib64 hack used by
   227 # 32 -> 64 bit crosscompilers won't work, and build of final gcc will fail with
   228 #  "ld: cannot open crti.o: No such file or directory"
   229 mkdir -p "${CT_SYSROOT_DIR}/lib"
   230 mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
   231 
   232 # Canadian-cross are really picky on the way they are built. Tweak the values.
   233 if [ "${CT_CANADIAN}" = "y" ]; then
   234     # Arrange so that gcc never, ever think that build system == host system
   235     CT_CANADIAN_OPT="--build=`echo \"${CT_BUILD}\" |sed -r -e 's/-/-build_/'`"
   236     # We shall have a compiler for this target!
   237     # Do test here...
   238 else
   239     CT_HOST="${CT_BUILD}"
   240     CT_CANADIAN_OPT=
   241     # Add the target toolchain in the path so that we can build the C library
   242     export PATH="${CT_PREFIX_DIR}/bin:${CT_CC_CORE_PREFIX_DIR}/bin:${PATH}"
   243 fi
   244 
   245 # Modify GCC_HOST to never be equal to $BUILD or $TARGET
   246 # This strange operation causes gcc to always generate a cross-compiler
   247 # even if the build machine is the same kind as the host.
   248 # This is why CC has to be set when doing a canadian cross; you can't find a
   249 # host compiler by appending -gcc to our whacky $GCC_HOST
   250 # Kludge: it is reported that the above causes canadian crosses with cygwin
   251 # hosts to fail, so avoid it just in that one case.  It would be cleaner to
   252 # just move this into the non-canadian case above, but I'm afraid that might
   253 # cause some configure script somewhere to decide that since build==host, they
   254 # could run host binaries.
   255 # (Copied almost as-is from original crosstool):
   256 case "${CT_KERNEL},${CT_CANADIAN}" in
   257     cygwin,y) ;;
   258     *)        CT_HOST="`echo \"${CT_HOST}\" |sed -r -e 's/-/-host_/;'`";;
   259 esac
   260 
   261 # Ah! Recent versions of binutils need some of the build and/or host system
   262 # (read CT_BUILD and CT_HOST) tools to be accessible (ar is but an example).
   263 # Do that:
   264 CT_DoLog EXTRA "Making build system tools available"
   265 mkdir -p "${CT_PREFIX_DIR}/bin"
   266 for tool in ar; do
   267     ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_BUILD}-${tool}"
   268     ln -s "`which ${tool}`" "${CT_PREFIX_DIR}/bin/${CT_HOST}-${tool}"
   269 done
   270 
   271 # Ha. cygwin host have an .exe suffix (extension) for executables.
   272 [ "${CT_KERNEL}" = "cygwin" ] && EXEEXT=".exe" || EXEEXT=""
   273 
   274 # Transform the ARCH into a kernel-understandable ARCH
   275 case "${CT_ARCH}" in
   276     x86) CT_KERNEL_ARCH=i386;;
   277     ppc) CT_KERNEL_ARCH=powerpc;;
   278     *)   CT_KERNEL_ARCH="${CT_ARCH}";;
   279 esac
   280 
   281 # Build up the TARGET_CFLAGS from user-provided options
   282 # Override with user-specified CFLAGS
   283 [ -n "${CT_ARCH_CPU}" ]  && CT_TARGET_CFLAGS="-mcpu=${CT_ARCH_CPU} ${CT_TARGET_CFLAGS}"
   284 [ -n "${CT_ARCH_TUNE}" ] && CT_TARGET_CFLAGS="-mtune=${CT_ARCH_TUNE} ${CT_TARGET_CFLAGS}"
   285 [ -n "${CT_ARCH_ARCH}" ] && CT_TARGET_CFLAGS="-march=${CT_ARCH_ARCH} ${CT_TARGET_CFLAGS}"
   286 [ -n "${CT_ARCH_FPU}" ]  && CT_TARGET_CFLAGS="-mfpu=${CT_ARCH_FPU} ${CT_TARGET_CFLAGS}"
   287 
   288 # Help gcc
   289 CT_CFLAGS_FOR_HOST=
   290 [ "${CT_USE_PIPES}" = "y" ] && CT_CFLAGS_FOR_HOST="${CT_CFLAGS_FOR_HOST} -pipe"
   291 
   292 # And help make go faster
   293 PARALLELMFLAGS=
   294 [ ${CT_PARALLEL_JOBS} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -j${CT_PARALLEL_JOBS}"
   295 [ ${CT_LOAD} -ne 0 ] && PARALLELMFLAGS="${PARALLELMFLAGS} -l${CT_LOAD}"
   296 
   297 CT_DoStep EXTRA "Dumping internal crosstool-NG configuration"
   298 CT_DoLog EXTRA "Building a toolchain for:"
   299 CT_DoLog EXTRA "  build  = ${CT_BUILD}"
   300 CT_DoLog EXTRA "  host   = ${CT_HOST}"
   301 CT_DoLog EXTRA "  target = ${CT_TARGET}"
   302 set |egrep '^CT_.+=' |sort |CT_DoLog DEBUG
   303 CT_EndStep
   304 
   305 # Include sub-scripts instead of calling them: that way, we do not have to
   306 # export any variable, nor re-parse the configuration and functions files.
   307 . "${CT_TOP_DIR}/scripts/build/kernel_${CT_KERNEL}.sh"
   308 . "${CT_TOP_DIR}/scripts/build/binutils.sh"
   309 . "${CT_TOP_DIR}/scripts/build/libc_libfloat.sh"
   310 . "${CT_TOP_DIR}/scripts/build/libc_${CT_LIBC}.sh"
   311 . "${CT_TOP_DIR}/scripts/build/cc_core_${CT_CC_CORE}.sh"
   312 . "${CT_TOP_DIR}/scripts/build/cc_${CT_CC}.sh"
   313 
   314 # Now for the job by itself. Go have a coffee!
   315 if [ "${CT_NO_DOWNLOAD}" != "y" ]; then
   316 	CT_DoStep INFO "Retrieving needed toolchain components' tarballs"
   317     do_kernel_get
   318     do_binutils_get
   319     do_cc_core_get
   320     do_libfloat_get
   321     do_libc_get
   322     do_cc_get
   323     CT_EndStep
   324 fi
   325 
   326 if [ "${CT_ONLY_DOWNLOAD}" != "y" ]; then
   327     if [ "${CT_FORCE_EXTRACT}" = "y" ]; then
   328         mv "${CT_SRC_DIR}" "${CT_SRC_DIR}.$$"
   329         nohup rm -rf "${CT_SRC_DIR}.$$" >/dev/null 2>&1
   330     fi
   331     CT_DoStep INFO "Extracting and patching toolchain components"
   332     do_kernel_extract
   333     do_binutils_extract
   334     do_libc_extract
   335     do_libfloat_extract
   336     do_cc_core_extract
   337     do_cc_extract
   338     CT_EndStep
   339 
   340     if [ "${CT_ONLY_EXTRACT}" != "y" ]; then
   341         do_libc_check_config
   342         do_kernel_check_config
   343         do_kernel_headers
   344         do_binutils
   345         do_libc_headers
   346         do_cc_core
   347         do_libfloat
   348         do_libc
   349         do_cc
   350         do_libc_finish
   351     fi
   352 fi
   353 
   354 if [ -n "${CT_TARGET_ALIAS}" ]; then
   355     CT_DoLog EXTRA "Creating symlinks from \"${CT_TARGET}-*\" to \"${CT_TARGET_ALIAS}-*\""
   356     CT_Pushd "${CT_PREFIX_DIR}/bin"
   357     for t in "${CT_TARGET}-"*; do
   358         _t="`echo \"$t\" |sed -r -e 's/^'\"${CT_TARGET}\"'-/'\"${CT_TARGET_ALIAS}\"'-/;'`"
   359         CT_DoLog DEBUG "Linking \"${_t}\" -> \"${t}\""
   360         ln -s "${t}" "${_t}"
   361     done
   362     CT_Popd
   363 fi
   364 
   365 if [ "${CT_REMOVE_DOCS}" = "y" ]; then
   366 	CT_DoLog INFO "Removing installed documentation"
   367     rm -rf "${CT_PREFIX_DIR}/"{man,info}
   368 fi
   369 
   370 CT_STOP_DATE=`CT_DoDate +%s%N`
   371 CT_STOP_DATE_HUMAN=`CT_DoDate +%Y%m%d.%H%M%S`
   372 CT_DoLog INFO "Build completed at ${CT_STOP_DATE_HUMAN}"
   373 elapsed=$((CT_STOP_DATE-CT_STAR_DATE))
   374 elapsed_min=$((elapsed/(60*1000*1000*1000)))
   375 elapsed_sec=`printf "%02d" $(((elapsed%(60*1000*1000*1000))/(1000*1000*1000)))`
   376 elapsed_csec=`printf "%02d" $(((elapsed%(1000*1000*1000))/(10*1000*1000)))`
   377 CT_DoLog INFO "(elapsed: ${elapsed_min}:${elapsed_sec}.${elapsed_csec})"
   378 
   379 # Restore a 'normal' color setting
   380 echo -en "${CT_NORMAL_COLOR}"
   381 
   382 trap - EXIT