scripts/build/libc/glibc-eglibc.sh-common
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 25 20:31:16 2011 +0100 (2011-01-25)
changeset 2279 a559d9890c02
parent 2278 e86826b8621a
child 2289 165eff2a1e10
permissions -rw-r--r--
config: add an option to name the sysroot directory

Depending on local policies, some users have expressed a need to
have the sysroot be named differently than the hard-coded name.

Add an option for that.
Default to 'sysroot' to match the existing literature.

While at it, replace 'sys-root' with 'sysroot' everywhere we
reference the sysroot.

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