scripts/build/libc/glibc-eglibc.sh-common
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Nov 21 23:26:18 2011 +0100 (2011-11-21)
changeset 2805 5625304f5bf3
parent 2765 6c5658b8b588
child 2806 096845dbd877
permissions -rw-r--r--
libc/glibc: create build dir using libc_mode

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