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