scripts/build/libc/glibc-eglibc.sh-common
author "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Fri Jun 03 17:21:56 2011 +0200 (2011-06-03)
changeset 2503 b5541f296b92
parent 2496 cc9b84a83b34
child 2515 364b06df9e3a
permissions -rw-r--r--
kconfig: prepend CT-NG's version tag to PKGVERSION

"crosstool-NG-${CT_VERSION}" is currently the default for TOOLCHAIN_PKGVERSION,
and this options is passed as is to --with-pkgversion.

This patch prepends "crosstool-NG ${CT_VERSION}" to TOOLCHAIN_PKGVERSION before
passing it to --with-pkgversion.

Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
     1 # This file contains the functions common to glibc and eglibc
     2 
     3 # Extract the C library tarball(s)
     4 do_libc_extract() {
     5     local addon
     6 
     7     # Extract the main tarball
     8     CT_Extract "${CT_LIBC}-${CT_LIBC_VERSION}"
     9     CT_Pushd "${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
    10     CT_Patch nochdir "${CT_LIBC}" "${CT_LIBC_VERSION}"
    11 
    12     # Extract the add-opns
    13     for addon in $(do_libc_add_ons_list " "); do
    14         # If the addon was bundled with the main archive, we do not
    15         # need to extract it. Worse, if we were to try to extract
    16         # it, we'd get an error.
    17         if [ -d "${addon}" ]; then
    18             CT_DoLog DEBUG "Add-on already present, spkipping extraction"
    19             continue
    20         fi
    21 
    22         CT_Extract nochdir "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
    23 
    24         CT_TestAndAbort "Error in add-on '${addon}': both short and long names in tarball" \
    25             -d "${addon}" -a -d "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
    26 
    27         # Some addons have the 'long' name, while others have the
    28         # 'short' name, but patches are non-uniformly built with
    29         # either the 'long' or 'short' name, whatever the addons name
    30         # but we prefer the 'short' name and avoid duplicates.
    31         if [ -d "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" ]; then
    32             mv "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" "${addon}"
    33         fi
    34 
    35         ln -s "${addon}" "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
    36 
    37         CT_Patch nochdir "${CT_LIBC}" "${addon}-${CT_LIBC_VERSION}"
    38 
    39         # Remove the long name since it can confuse configure scripts to run
    40         # the same source twice.
    41         rm "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
    42     done
    43 
    44     # The configure files may be older than the configure.in files
    45     # if using a snapshot (or even some tarballs). Fake them being
    46     # up to date.
    47     find . -type f -name configure -exec touch {} \; 2>&1 |CT_DoLog ALL
    48 
    49     CT_Popd
    50 }
    51 
    52 # Build and install headers and start files
    53 do_libc_start_files() {
    54     local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
    55 
    56     CT_DoStep INFO "Installing C library headers & start files"
    57 
    58     mkdir -p "${CT_BUILD_DIR}/build-libc-startfiles"
    59     cd "${CT_BUILD_DIR}/build-libc-startfiles"
    60 
    61     CT_DoLog EXTRA "Configuring C library"
    62 
    63     case "${CT_LIBC}" in
    64         eglibc)
    65             if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
    66                 CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
    67             fi
    68             ;;
    69     esac
    70 
    71     cross_cc=$(CT_Which "${CT_TARGET}-gcc")
    72     cross_cxx=$(CT_Which "${CT_TARGET}-g++")
    73     cross_ar=$(CT_Which "${CT_TARGET}-ar")
    74     cross_ranlib=$(CT_Which "${CT_TARGET}-ranlib")
    75 
    76     CT_DoLog DEBUG "Using gcc for target: '${cross_cc}'"
    77     CT_DoLog DEBUG "Using g++ for target: '${cross_cxx}'"
    78     CT_DoLog DEBUG "Using ar for target: '${cross_ar}'"
    79     CT_DoLog DEBUG "Using ranlib for target: '${cross_ranlib}'"
    80 
    81     touch config.cache
    82     if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
    83         echo "libc_cv_forced_unwind=yes" >>config.cache
    84         echo "libc_cv_c_cleanup=yes" >>config.cache
    85     fi
    86 
    87     # Pre-seed the configparms file with values from the config option
    88     printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
    89 
    90     CT_DoExecLog CFG                                    \
    91     BUILD_CC="${CT_BUILD}-gcc"                          \
    92     CC=${cross_cc}                                      \
    93     CXX=${cross_cxx}                                    \
    94     AR=${cross_ar}                                      \
    95     RANLIB=${cross_ranlib}                              \
    96     "${src_dir}/configure"                              \
    97         --prefix=/usr                                   \
    98         --with-headers="${CT_HEADERS_DIR}"              \
    99         --build="${CT_BUILD}"                           \
   100         --host="${CT_TARGET}"                           \
   101         --cache-file="$(pwd)/config.cache"              \
   102         --disable-profile                               \
   103         --without-gd                                    \
   104         --without-cvs                                   \
   105         --enable-add-ons
   106 
   107     CT_DoLog EXTRA "Installing C library headers"
   108 
   109     # use the 'install-headers' makefile target to install the
   110     # headers
   111     CT_DoExecLog ALL make ${JOBSFLAGS}              \
   112                      install_root=${CT_SYSROOT_DIR} \
   113                      install-bootstrap-headers=yes  \
   114                      install-headers
   115 
   116     # For glibc, a few headers need to be manually installed
   117     if [ "${CT_LIBC}" = "glibc" ]; then
   118         # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
   119         # so do them by hand.  We can tolerate an empty stubs.h for the moment.
   120         # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
   121         mkdir -p "${CT_HEADERS_DIR}/gnu"
   122         CT_DoExecLog ALL touch "${CT_HEADERS_DIR}/gnu/stubs.h"
   123         CT_DoExecLog ALL cp -v "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/include/features.h"  \
   124                                "${CT_HEADERS_DIR}/features.h"
   125 
   126         # Building the bootstrap gcc requires either setting inhibit_libc, or
   127         # having a copy of stdio_lim.h... see
   128         # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
   129         CT_DoExecLog ALL cp -v bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
   130 
   131         # Following error building gcc-4.0.0's gcj:
   132         #  error: bits/syscall.h: No such file or directory
   133         # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
   134         # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
   135         case "${CT_ARCH}" in
   136             arm)    ;;
   137             *)  CT_DoExecLog ALL cp -v "misc/syscall-list.h"            \
   138                                        "${CT_HEADERS_DIR}/bits/syscall.h"
   139                 ;;
   140         esac
   141     fi
   142 
   143     if [ "${CT_THREADS}" = "nptl" ]; then
   144         CT_DoLog EXTRA "Installing C library start files"
   145 
   146         # there are a few object files needed to link shared libraries,
   147         # which we build and install by hand
   148         CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
   149         CT_DoExecLog ALL make ${JOBSFLAGS} csu/subdir_lib
   150         CT_DoExecLog ALL cp csu/crt1.o csu/crti.o csu/crtn.o \
   151                             "${CT_SYSROOT_DIR}/usr/lib"
   152 
   153         # Finally, 'libgcc_s.so' requires a 'libc.so' to link against.
   154         # However, since we will never actually execute its code,
   155         # it doesn't matter what it contains.  So, treating '/dev/null'
   156         # as a C source file, we produce a dummy 'libc.so' in one step
   157         CT_DoExecLog ALL "${cross_cc}" -nostdlib        \
   158                                        -nostartfiles    \
   159                                        -shared          \
   160                                        -x c /dev/null   \
   161                                        -o "${CT_SYSROOT_DIR}/usr/lib/libc.so"
   162     fi # threads == nptl
   163 
   164     CT_EndStep
   165 }
   166 
   167 # This function builds and install the full C library
   168 do_libc() {
   169     local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
   170     local extra_cc_args
   171     local -a extra_config
   172     local -a extra_make_args
   173     local glibc_cflags
   174 
   175     CT_DoStep INFO "Installing C library"
   176 
   177     mkdir -p "${CT_BUILD_DIR}/build-libc"
   178     cd "${CT_BUILD_DIR}/build-libc"
   179 
   180     CT_DoLog EXTRA "Configuring C library"
   181 
   182     case "${CT_LIBC}" in
   183         eglibc)
   184             if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
   185                 CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
   186             fi
   187             if [ "${CT_EGLIBC_OPT_SIZE}" = "y" ]; then
   188                 OPTIMIZE=-Os
   189             else
   190                 OPTIMIZE=-O2
   191             fi
   192             ;;
   193         glibc)
   194             # glibc can't be built without -O2 (reference needed!)
   195             OPTIMIZE=-O2
   196             # Also, if those two are missing, iconv build breaks
   197             extra_config+=( --disable-debug --disable-sanity-checks )
   198             ;;
   199     esac
   200 
   201     # Add some default glibc config options if not given by user.
   202     # We don't need to be conditional on wether the user did set different
   203     # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY is passed after
   204     # extra_config
   205 
   206     extra_config+=("$(do_libc_min_kernel_config)")
   207 
   208     case "${CT_THREADS}" in
   209         nptl)           extra_config+=("--with-__thread" "--with-tls");;
   210         linuxthreads)   extra_config+=("--with-__thread" "--without-tls" "--without-nptl");;
   211         none)           extra_config+=("--without-__thread" "--without-nptl")
   212                         case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
   213                             *-tls*) ;;
   214                             *) extra_config+=("--without-tls");;
   215                         esac
   216                         ;;
   217     esac
   218 
   219     case "${CT_SHARED_LIBS}" in
   220         y) extra_config+=("--enable-shared");;
   221         *) extra_config+=("--disable-shared");;
   222     esac
   223 
   224     case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
   225         y,) extra_config+=("--with-fp");;
   226         ,y) extra_config+=("--without-fp");;
   227     esac
   228 
   229     if [ "${CT_LIBC_DISABLE_VERSIONING}" = "y" ]; then
   230         extra_config+=("--disable-versioning")
   231     fi
   232 
   233     if [ "${CT_LIBC_OLDEST_ABI}" != "" ]; then
   234         extra_config+=("--enable-oldest-abi=${CT_LIBC_OLDEST_ABI}")
   235     fi
   236 
   237     case "$(do_libc_add_ons_list ,)" in
   238         "") ;;
   239         *)  extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");;
   240     esac
   241 
   242     if [ "${CT_LIBC_EGLIBC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
   243         extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
   244         [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
   245     fi
   246 
   247     extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
   248 
   249     touch config.cache
   250     if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
   251         echo "libc_cv_forced_unwind=yes" >>config.cache
   252         echo "libc_cv_c_cleanup=yes" >>config.cache
   253     fi
   254 
   255     # Pre-seed the configparms file with values from the config option
   256     printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
   257 
   258     cross_cc=$(CT_Which "${CT_TARGET}-gcc")
   259 
   260     CT_DoLog DEBUG "Using gcc for target:     '${cross_cc}'"
   261     CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
   262     CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'"
   263     CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
   264 
   265     glibc_cflags="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} ${OPTIMIZE}"
   266     case "${CT_LIBC_ENABLE_FORTIFIED_BUILD}" in
   267         y)  ;;
   268         *)  glibc_cflags+=" -U_FORTIFY_SOURCE";;
   269     esac
   270 
   271     # ./configure is mislead by our tools override wrapper for bash
   272     # so just tell it where the real bash is _on_the_target_!
   273     # Notes:
   274     # - ${ac_cv_path_BASH_SHELL} is only used to set BASH_SHELL
   275     # - ${BASH_SHELL}            is only used to set BASH
   276     # - ${BASH}                  is only used to set the shebang
   277     #                            in two scripts to run on the target
   278     # So we can safely bypass bash detection at compile time.
   279     # Should this change in a future eglibc release, we'd better
   280     # directly mangle the generated scripts _after_ they get built,
   281     # or even after they get installed... eglibc is such a sucker...
   282     echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache
   283 
   284     # Configure with --prefix the way we want it on the target...
   285     # There are a whole lot of settings here.  You'll probably want
   286     # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG_ARRAY
   287     # Compare these options with the ones used when installing the glibc headers above - they're different.
   288     # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory"
   289     # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html.
   290     # Set BUILD_CC, or we won't be able to build datafiles
   291 
   292     CT_DoExecLog CFG                                                \
   293     BUILD_CC="${CT_BUILD}-gcc"                                      \
   294     CFLAGS="${glibc_cflags}"                                        \
   295     CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
   296     AR=${CT_TARGET}-ar                                              \
   297     RANLIB=${CT_TARGET}-ranlib                                      \
   298     "${src_dir}/configure"                                          \
   299         --prefix=/usr                                               \
   300         --build=${CT_BUILD}                                         \
   301         --host=${CT_TARGET}                                         \
   302         --cache-file="$(pwd)/config.cache"                          \
   303         --without-cvs                                               \
   304         --disable-profile                                           \
   305         --without-gd                                                \
   306         --with-headers="${CT_HEADERS_DIR}"                          \
   307         "${extra_config[@]}"                                        \
   308         "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[@]}"
   309 
   310     # build hacks
   311     case "${CT_ARCH},${CT_ARCH_CPU}" in
   312         powerpc,8??)
   313             # http://sourceware.org/ml/crossgcc/2008-10/msg00068.html
   314             CT_DoLog DEBUG "Activating support for memset on broken ppc-8xx (CPU15 erratum)"
   315             extra_make_args+=( ASFLAGS="-DBROKEN_PPC_8xx_CPU15" )
   316             ;;
   317     esac
   318 
   319     CT_DoLog EXTRA "Building C library"
   320     CT_DoExecLog ALL make ${JOBSFLAGS}                      \
   321                           "${extra_make_args[@]}"           \
   322                           all
   323 
   324     CT_DoLog EXTRA "Installing C library"
   325     CT_DoExecLog ALL make ${JOBSFLAGS}                      \
   326                           "${extra_make_args[@]}"           \
   327                           install_root="${CT_SYSROOT_DIR}"  \
   328                           install
   329 
   330     CT_EndStep
   331 }
   332 
   333 # This function finishes the C library install
   334 # This is a no-op
   335 do_libc_finish() {
   336     :
   337 }
   338 
   339 # Build up the addons list, separated with $1
   340 do_libc_add_ons_list() {
   341     local sep="$1"
   342     local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}"         \
   343                           |sed -r -e "s/[[:space:],]/${sep}/g;" \
   344                         )"
   345     case "${CT_THREADS}" in
   346         none)   ;;
   347         *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
   348     esac
   349     [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
   350     # Remove duplicate, leading and trailing separators
   351     echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
   352 }
   353 
   354 # Compute up the minimum supported Linux kernel version
   355 do_libc_min_kernel_config() {
   356     local min_kernel_config
   357 
   358     case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
   359         *--enable-kernel*) ;;
   360         *)  if [ "${CT_LIBC_GLIBC_KERNEL_VERSION_AS_HEADERS}" = "y" ]; then
   361                 # We can't rely on the kernel version from the configuration,
   362                 # because it might not be available if the user uses pre-installed
   363                 # headers. On the other hand, both method will have the kernel
   364                 # version installed in "usr/include/linux/version.h" in the sysroot.
   365                 # Parse that instead of having two code-paths.
   366                 version_code_file="${CT_SYSROOT_DIR}/usr/include/linux/version.h"
   367                 if [ ! -f "${version_code_file}" -o ! -r "${version_code_file}" ]; then
   368                     CT_Abort "Linux version is unavailable in installed headers files"
   369                 fi
   370                 version_code="$( grep -E LINUX_VERSION_CODE "${version_code_file}"  \
   371                                  |cut -d ' ' -f 3                                   \
   372                                )"
   373                 version=$(((version_code>>16)&0xFF))
   374                 patchlevel=$(((version_code>>8)&0xFF))
   375                 sublevel=$((version_code&0xFF))
   376                 min_kernel_config="${version}.${patchlevel}.${sublevel}"
   377             elif [ "${CT_LIBC_GLIBC_KERNEL_VERSION_CHOSEN}" = "y" ]; then
   378                 # Trim the fourth part of the linux version, keeping only the first three numbers
   379                 min_kernel_config="$( echo "${CT_LIBC_GLIBC_MIN_KERNEL_VERSION}"            \
   380                                       |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \
   381                                     )"
   382             fi
   383             echo "--enable-kernel=${min_kernel_config}"
   384             ;;
   385     esac
   386 }