scripts/build/libc/glibc-eglibc.sh-common
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Nov 22 00:11:51 2011 +0100 (2011-11-22)
changeset 2822 09abd5f4295b
parent 2821 fc0afaf5c817
child 2823 5b2025372db7
permissions -rw-r--r--
libc/glibc: set the endian option according to extra CFLAGS

When building a multilib, some extra CFLAGS can override the
default config option. This is the case for the endianness
selection.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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             CT_DoExecLog FILE mv "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" "${addon}"
    33         fi
    34 
    35         CT_DoExecLog FILE 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     if [ "${CT_LIBC_LOCALES}" = "y" ]; then
    52         do_libc_locales_extract
    53     fi
    54 }
    55 
    56 # Build and install headers and start files
    57 do_libc_start_files() {
    58     # Start files and Headers should be configured the same way as the
    59     # final libc, but built and installed differently.
    60     do_libc_backend libc_mode=startfiles
    61 }
    62 
    63 # This function builds and install the full C library
    64 do_libc() {
    65     do_libc_backend libc_mode=final
    66 }
    67 
    68 # Usage: do_libc_backend param=value [...]
    69 #   Parameter           : Definition                            : Type      : Default
    70 #   libc_mode           : 'startfiles' or 'final'               : string    : (none)
    71 #   extra_flags         : Extra CFLAGS to use (for multilib)    : string    : (empty)
    72 do_libc_backend() {
    73     local libc_mode
    74     local extra_flags
    75     local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
    76     local extra_cc_args
    77     local -a extra_config
    78     local -a extra_make_args
    79     local glibc_cflags
    80     local float_extra
    81     local endian_extra
    82 
    83     while [ $# -ne 0 ]; do
    84         eval "${1// /\\ }"
    85         shift
    86     done
    87 
    88     case "${libc_mode}" in
    89         startfiles) CT_DoStep INFO "Installing C library headers & start files";;
    90         final)      CT_DoStep INFO "Installing C library";;
    91         *)          CT_Abort "Unsupported (or unset) libc_mode='${libc_mode}'";;
    92     esac
    93     mkdir -p "${CT_BUILD_DIR}/build-libc-${libc_mode}"
    94     cd "${CT_BUILD_DIR}/build-libc-${libc_mode}"
    95 
    96     CT_DoLog EXTRA "Configuring C library"
    97 
    98     case "${CT_LIBC}" in
    99         eglibc)
   100             if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
   101                 CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
   102             fi
   103             if [ "${CT_EGLIBC_OPT_SIZE}" = "y" ]; then
   104                 OPTIMIZE=-Os
   105             else
   106                 OPTIMIZE=-O2
   107             fi
   108             ;;
   109         glibc)
   110             # glibc can't be built without -O2 (reference needed!)
   111             OPTIMIZE=-O2
   112             # Also, if those two are missing, iconv build breaks
   113             extra_config+=( --disable-debug --disable-sanity-checks )
   114             ;;
   115     esac
   116 
   117     # Add some default glibc config options if not given by user.
   118     # We don't need to be conditional on wether the user did set different
   119     # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY is passed after
   120     # extra_config
   121 
   122     extra_config+=("$(do_libc_min_kernel_config)")
   123 
   124     case "${CT_THREADS}" in
   125         nptl)           extra_config+=("--with-__thread" "--with-tls");;
   126         linuxthreads)   extra_config+=("--with-__thread" "--without-tls" "--without-nptl");;
   127         none)           extra_config+=("--without-__thread" "--without-nptl")
   128                         case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
   129                             *-tls*) ;;
   130                             *) extra_config+=("--without-tls");;
   131                         esac
   132                         ;;
   133     esac
   134 
   135     case "${CT_SHARED_LIBS}" in
   136         y) extra_config+=("--enable-shared");;
   137         *) extra_config+=("--disable-shared");;
   138     esac
   139 
   140     float_extra="$( echo "${extra_flags}"       \
   141                     |${sed} -r -e '/^(.*[[:space:]])?-m(hard|soft)-float([[:space:]].*)?$/!d;'  \
   142                                -e 's//\2/;'     \
   143                   )"
   144     case "${float_extra}" in
   145         hard)   extra_config+=("--with-fp");;
   146         soft)   extra_config+=("--without-fp");;
   147         "")
   148             case "${CT_ARCH_FLOAT}" in
   149                 hard|softfp)    extra_config+=("--with-fp");;
   150                 soft)           extra_config+=("--without-fp");;
   151             esac
   152             ;;
   153     esac
   154 
   155     if [ "${CT_LIBC_DISABLE_VERSIONING}" = "y" ]; then
   156         extra_config+=("--disable-versioning")
   157     fi
   158 
   159     if [ "${CT_LIBC_OLDEST_ABI}" != "" ]; then
   160         extra_config+=("--enable-oldest-abi=${CT_LIBC_OLDEST_ABI}")
   161     fi
   162 
   163     case "$(do_libc_add_ons_list ,)" in
   164         "") extra_config+=("--enable-add-ons=no");;
   165         *)  extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");;
   166     esac
   167 
   168     if [ "${CT_LIBC_EGLIBC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
   169         extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
   170         [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
   171     fi
   172 
   173     # Extract the endianness options if any
   174     # This should cover all possible endianness options
   175     # in gcc, but it is prone to bit-rot... :-(
   176     endian_extra="$( echo "${extra_flags}"      \
   177                      |${sed} -r -e '/^(.*[[:space:]])?-(E[BL]|m((big|little)(-endian)?|e?[bl]))([[:space:]].*)?$/!d;' \
   178                                 -e 's//\2/;'    \
   179                    )"
   180     case "${endian_extra}" in
   181         EB|mbig-endian|mbig|meb|mb)
   182             extra_cc_args="${extra_cc_args} ${endian_extra}"
   183             ;;
   184         EL|mlittle-endian|mlittle|mel|ml)
   185             extra_cc_args="${extra_cc_args} ${endian_extra}"
   186             ;;
   187         "") extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
   188             ;;
   189     esac
   190 
   191     touch config.cache
   192     if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
   193         echo "libc_cv_forced_unwind=yes" >>config.cache
   194         echo "libc_cv_c_cleanup=yes" >>config.cache
   195     fi
   196 
   197     # Pre-seed the configparms file with values from the config option
   198     printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
   199 
   200     cross_cc=$(CT_Which "${CT_TARGET}-gcc")
   201     extra_cc_args+=" ${extra_flags}"
   202 
   203     CT_DoLog DEBUG "Using gcc for target:     '${cross_cc}'"
   204     CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
   205     CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'"
   206     CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
   207     CT_DoLog DEBUG "Extra flags (multilib)  : '${extra_flags}'"
   208 
   209     glibc_cflags="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} ${OPTIMIZE}"
   210     case "${CT_LIBC_ENABLE_FORTIFIED_BUILD}" in
   211         y)  ;;
   212         *)  glibc_cflags+=" -U_FORTIFY_SOURCE";;
   213     esac
   214 
   215     # ./configure is mislead by our tools override wrapper for bash
   216     # so just tell it where the real bash is _on_the_target_!
   217     # Notes:
   218     # - ${ac_cv_path_BASH_SHELL} is only used to set BASH_SHELL
   219     # - ${BASH_SHELL}            is only used to set BASH
   220     # - ${BASH}                  is only used to set the shebang
   221     #                            in two scripts to run on the target
   222     # So we can safely bypass bash detection at compile time.
   223     # Should this change in a future eglibc release, we'd better
   224     # directly mangle the generated scripts _after_ they get built,
   225     # or even after they get installed... eglibc is such a sucker...
   226     echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache
   227 
   228     # Configure with --prefix the way we want it on the target...
   229     # There are a whole lot of settings here.  You'll probably want
   230     # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG_ARRAY
   231     # Compare these options with the ones used when installing the glibc headers above - they're different.
   232     # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory"
   233     # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html.
   234     # Set BUILD_CC, or we won't be able to build datafiles
   235     # Run explicitly through CONFIG_SHELL, or the build breaks badly (loop-of-death)
   236     # when the shell is not bash... Sigh... :-(
   237 
   238     CT_DoExecLog CFG                                                \
   239     BUILD_CC="${CT_BUILD}-gcc"                                      \
   240     CFLAGS="${glibc_cflags}"                                        \
   241     CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
   242     AR=${CT_TARGET}-ar                                              \
   243     RANLIB=${CT_TARGET}-ranlib                                      \
   244     "${CONFIG_SHELL}"                                               \
   245     "${src_dir}/configure"                                          \
   246         --prefix=/usr                                               \
   247         --build=${CT_BUILD}                                         \
   248         --host=${CT_TARGET}                                         \
   249         --cache-file="$(pwd)/config.cache"                          \
   250         --without-cvs                                               \
   251         --disable-profile                                           \
   252         --without-gd                                                \
   253         --with-headers="${CT_HEADERS_DIR}"                          \
   254         "${extra_config[@]}"                                        \
   255         "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[@]}"
   256 
   257     # build hacks
   258     case "${CT_ARCH},${CT_ARCH_CPU}" in
   259         powerpc,8??)
   260             # http://sourceware.org/ml/crossgcc/2008-10/msg00068.html
   261             CT_DoLog DEBUG "Activating support for memset on broken ppc-8xx (CPU15 erratum)"
   262             extra_make_args+=( ASFLAGS="-DBROKEN_PPC_8xx_CPU15" )
   263             ;;
   264     esac
   265 
   266     if [ "${libc_mode}" = "startfiles" ]; then
   267         CT_DoLog EXTRA "Installing C library headers"
   268 
   269         # use the 'install-headers' makefile target to install the
   270         # headers
   271         CT_DoExecLog ALL make ${JOBSFLAGS}              \
   272                          install_root=${CT_SYSROOT_DIR} \
   273                          install-bootstrap-headers=yes  \
   274                          "${extra_make_args[@]}"        \
   275                          install-headers
   276 
   277         # For glibc, a few headers need to be manually installed
   278         if [ "${CT_LIBC}" = "glibc" ]; then
   279             # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
   280             # so do them by hand.  We can tolerate an empty stubs.h for the moment.
   281             # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
   282             mkdir -p "${CT_HEADERS_DIR}/gnu"
   283             CT_DoExecLog ALL touch "${CT_HEADERS_DIR}/gnu/stubs.h"
   284             CT_DoExecLog ALL cp -v "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/include/features.h"  \
   285                                    "${CT_HEADERS_DIR}/features.h"
   286 
   287             # Building the bootstrap gcc requires either setting inhibit_libc, or
   288             # having a copy of stdio_lim.h... see
   289             # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
   290             CT_DoExecLog ALL cp -v bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
   291 
   292             # Following error building gcc-4.0.0's gcj:
   293             #  error: bits/syscall.h: No such file or directory
   294             # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
   295             # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
   296             case "${CT_ARCH}" in
   297                 arm)    ;;
   298                 *)  CT_DoExecLog ALL cp -v "misc/syscall-list.h"            \
   299                                            "${CT_HEADERS_DIR}/bits/syscall.h"
   300                     ;;
   301             esac
   302         fi
   303 
   304         if [ "${CT_THREADS}" = "nptl" ]; then
   305             CT_DoLog EXTRA "Installing C library start files"
   306 
   307             # there are a few object files needed to link shared libraries,
   308             # which we build and install by hand
   309             CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
   310             CT_DoExecLog ALL make ${JOBSFLAGS}  \
   311                         "${extra_make_args[@]}" \
   312                         csu/subdir_lib
   313             CT_DoExecLog ALL cp csu/crt1.o csu/crti.o csu/crtn.o \
   314                                 "${CT_SYSROOT_DIR}/usr/lib"
   315 
   316             # Finally, 'libgcc_s.so' requires a 'libc.so' to link against.
   317             # However, since we will never actually execute its code,
   318             # it doesn't matter what it contains.  So, treating '/dev/null'
   319             # as a C source file, we produce a dummy 'libc.so' in one step
   320             CT_DoExecLog ALL "${cross_cc}" -nostdlib        \
   321                                            -nostartfiles    \
   322                                            -shared          \
   323                                            -x c /dev/null   \
   324                                            -o "${CT_SYSROOT_DIR}/usr/lib/libc.so"
   325         fi # threads == nptl
   326     else # libc_mode = final
   327         CT_DoLog EXTRA "Building C library"
   328         CT_DoExecLog ALL make ${JOBSFLAGS}                      \
   329                               "${extra_make_args[@]}"           \
   330                               all
   331 
   332         CT_DoLog EXTRA "Installing C library"
   333         CT_DoExecLog ALL make ${JOBSFLAGS}                      \
   334                               "${extra_make_args[@]}"           \
   335                               install_root="${CT_SYSROOT_DIR}"  \
   336                               install
   337 
   338         if [ "${CT_BUILD_MANUALS}" = "y" ]; then
   339             CT_DoLog EXTRA "Building and installing the C library manual"
   340             # Omit JOBSFLAGS as GLIBC has problems building the
   341             # manuals in parallel
   342             CT_DoExecLog ALL make pdf html
   343             # EGLIBC doesn't have a install-{pdf.html} and leaves the manuals
   344             # in the source directory
   345             CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc
   346             CT_DoExecLog ALL cp -av ${src_dir}/manual/*.pdf ${src_dir}/manual/libc \
   347                 ${CT_PREFIX_DIR}/share/doc
   348         fi
   349 
   350         if [ "${CT_LIBC_LOCALES}" = "y" ]; then
   351             do_libc_locales
   352         fi
   353     fi
   354 
   355     CT_EndStep
   356 }
   357 
   358 # This function finishes the C library install
   359 # This is a no-op
   360 do_libc_finish() {
   361     :
   362 }
   363 
   364 # Build up the addons list, separated with $1
   365 do_libc_add_ons_list() {
   366     local sep="$1"
   367     local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}"         \
   368                           |sed -r -e "s/[[:space:],]/${sep}/g;" \
   369                         )"
   370     case "${CT_THREADS}" in
   371         none)   ;;
   372         *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
   373     esac
   374     [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
   375     # Remove duplicate, leading and trailing separators
   376     echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
   377 }
   378 
   379 # Compute up the minimum supported Linux kernel version
   380 do_libc_min_kernel_config() {
   381     local min_kernel_config
   382 
   383     case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
   384         *--enable-kernel*) ;;
   385         *)  if [ "${CT_LIBC_GLIBC_KERNEL_VERSION_AS_HEADERS}" = "y" ]; then
   386                 # We can't rely on the kernel version from the configuration,
   387                 # because it might not be available if the user uses pre-installed
   388                 # headers. On the other hand, both method will have the kernel
   389                 # version installed in "usr/include/linux/version.h" in the sysroot.
   390                 # Parse that instead of having two code-paths.
   391                 version_code_file="${CT_SYSROOT_DIR}/usr/include/linux/version.h"
   392                 if [ ! -f "${version_code_file}" -o ! -r "${version_code_file}" ]; then
   393                     CT_Abort "Linux version is unavailable in installed headers files"
   394                 fi
   395                 version_code="$( grep -E LINUX_VERSION_CODE "${version_code_file}"  \
   396                                  |cut -d ' ' -f 3                                   \
   397                                )"
   398                 version=$(((version_code>>16)&0xFF))
   399                 patchlevel=$(((version_code>>8)&0xFF))
   400                 sublevel=$((version_code&0xFF))
   401                 min_kernel_config="${version}.${patchlevel}.${sublevel}"
   402             elif [ "${CT_LIBC_GLIBC_KERNEL_VERSION_CHOSEN}" = "y" ]; then
   403                 # Trim the fourth part of the linux version, keeping only the first three numbers
   404                 min_kernel_config="$( echo "${CT_LIBC_GLIBC_MIN_KERNEL_VERSION}"            \
   405                                       |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \
   406                                     )"
   407             fi
   408             echo "--enable-kernel=${min_kernel_config}"
   409             ;;
   410     esac
   411 }