scripts/build/libc/glibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 22 22:35:43 2011 +0100 (2011-01-22)
changeset 2275 9ab4392430ad
parent 2274 2f0e9d2cfce5
child 2276 ac021d186cd6
permissions -rw-r--r--
scripts: PARALLELMFLAGS is evil, rename

The reunification of the glibc/eglibc code paths exposed a nasty
bug in the glibc build: use of PARALLELMFLAGS breaks the build.

See the explanations in that bug report against FC6:
https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=212111

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@850
     1
# This file adds functions to build glibc
yann@850
     2
# Copyright 2007 Yann E. MORIN
yann@850
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@850
     4
yann@2272
     5
# Add the definitions common to glibc and eglibc
yann@2272
     6
#   do_libc_headers
yann@2272
     7
#   do_libc_start_files
yann@2272
     8
. "${CT_LIB_DIR}/scripts/build/libc/glibc-eglibc.sh-common"
yann@2272
     9
yann@850
    10
# Download glibc
yann@850
    11
do_libc_get() {
yann@1260
    12
    local date
yann@1260
    13
    local version
yann@1482
    14
    local -a addons_list
yann@1482
    15
yann@1482
    16
    addons_list=($(do_libc_add_ons_list " "))
yann@1114
    17
yann@1759
    18
    # Main source
yann@1759
    19
    CT_GetFile "glibc-${CT_LIBC_VERSION}"               \
yann@1759
    20
               {ftp,http}://ftp.gnu.org/gnu/glibc       \
yann@1759
    21
               ftp://gcc.gnu.org/pub/glibc/releases     \
yann@1759
    22
               ftp://gcc.gnu.org/pub/glibc/snapshots
yann@1759
    23
yann@1759
    24
    # C library addons
yann@1759
    25
    for addon in "${addons_list[@]}"; do
yann@1759
    26
        # NPTL addon is not to be downloaded, in any case
yann@1759
    27
        [ "${addon}" = "nptl" ] && continue || true
yann@1759
    28
        CT_GetFile "glibc-${addon}-${CT_LIBC_VERSION}"      \
yann@850
    29
                   {ftp,http}://ftp.gnu.org/gnu/glibc       \
yann@850
    30
                   ftp://gcc.gnu.org/pub/glibc/releases     \
yann@850
    31
                   ftp://gcc.gnu.org/pub/glibc/snapshots
yann@1759
    32
    done
yann@850
    33
yann@850
    34
    return 0
yann@850
    35
}
yann@850
    36
yann@850
    37
# Extract glibc
yann@850
    38
do_libc_extract() {
yann@1482
    39
    local -a addons_list
yann@1482
    40
yann@1482
    41
    addons_list=($(do_libc_add_ons_list " "))
yann@1260
    42
yann@1759
    43
    CT_Extract "glibc-${CT_LIBC_VERSION}"
yann@1260
    44
yann@1759
    45
    CT_Pushd "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}"
yann@1901
    46
    CT_Patch nochdir "glibc" "${CT_LIBC_VERSION}"
yann@850
    47
yann@850
    48
    # C library addons
yann@1482
    49
    for addon in "${addons_list[@]}"; do
yann@850
    50
        # NPTL addon is not to be extracted, in any case
yann@850
    51
        [ "${addon}" = "nptl" ] && continue || true
yann@1761
    52
        CT_Extract nochdir "glibc-${addon}-${CT_LIBC_VERSION}"
yann@1260
    53
yann@1126
    54
        # Some addons have the 'long' name, while others have the
yann@1126
    55
        # 'short' name, but patches are non-uniformly built with
yann@1126
    56
        # either the 'long' or 'short' name, whatever the addons name
yann@1126
    57
        # so we have to make symlinks from the existing to the missing
yann@1126
    58
        # Fortunately for us, [ -d foo ], when foo is a symlink to a
yann@1126
    59
        # directory, returns true!
yann@1759
    60
        [ -d "${addon}" ] || CT_DoExecLog ALL ln -s "glibc-${addon}-${CT_LIBC_VERSION}" "${addon}"
yann@1759
    61
        [ -d "glibc-${addon}-${CT_LIBC_VERSION}" ] || CT_DoExecLog ALL ln -s "${addon}" "glibc-${addon}-${CT_LIBC_VERSION}"
yann@1901
    62
        CT_Patch nochdir "glibc" "${addon}-${CT_LIBC_VERSION}"
yann@850
    63
    done
yann@850
    64
yann@884
    65
    # The configure files may be older than the configure.in files
yann@884
    66
    # if using a snapshot (or even some tarballs). Fake them being
yann@884
    67
    # up to date.
yann@1482
    68
    sleep 2
yann@1260
    69
    find . -type f -name configure -exec touch {} \; 2>&1 |CT_DoLog ALL
yann@1260
    70
yann@1260
    71
    CT_Popd
yann@884
    72
yann@850
    73
    return 0
yann@850
    74
}
yann@850
    75
yann@850
    76
# There is nothing to do for glibc check config
yann@850
    77
do_libc_check_config() {
yann@850
    78
    :
yann@850
    79
}
yann@850
    80
yann@850
    81
# This function builds and install the full glibc
yann@850
    82
do_libc() {
yann@1482
    83
    local -a extra_config
yann@1260
    84
yann@850
    85
    CT_DoStep INFO "Installing C library"
yann@850
    86
yann@850
    87
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@850
    88
    cd "${CT_BUILD_DIR}/build-libc"
yann@850
    89
yann@850
    90
    CT_DoLog EXTRA "Configuring C library"
yann@850
    91
yann@850
    92
    # Add some default glibc config options if not given by user.
yann@850
    93
    # We don't need to be conditional on wether the user did set different
yann@850
    94
    # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG is passed after extra_config
yann@850
    95
yann@850
    96
    case "${CT_THREADS}" in
yann@1482
    97
        nptl)           extra_config+=("--with-__thread" "--with-tls");;
yann@1482
    98
        linuxthreads)   extra_config+=("--with-__thread" "--without-tls" "--without-nptl");;
yann@1482
    99
        none)           extra_config+=("--without-__thread" "--without-nptl")
yann@850
   100
                        case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
yann@850
   101
                            *-tls*) ;;
yann@1482
   102
                            *) extra_config+=("--without-tls");;
yann@850
   103
                        esac
yann@850
   104
                        ;;
yann@850
   105
    esac
yann@850
   106
yann@850
   107
    case "${CT_SHARED_LIBS}" in
yann@1482
   108
        y) extra_config+=("--enable-shared");;
yann@1482
   109
        *) extra_config+=("--disable-shared");;
yann@850
   110
    esac
yann@850
   111
yann@850
   112
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
jimfriel@1486
   113
        y,) extra_config+=("--with-fp");;
jimfriel@1486
   114
        ,y) extra_config+=("--without-fp");;
yann@850
   115
    esac
yann@850
   116
bryanhundven@2180
   117
    if [ "${CT_LIBC_DISABLE_VERSIONING}" = "y" ]; then
bryanhundven@2180
   118
        extra_config+=("--disable-versioning")
bryanhundven@2180
   119
    fi
bryanhundven@2180
   120
bryanhundven@2181
   121
    if [ "${CT_LIBC_OLDEST_ABI}" != "" ]; then
bryanhundven@2181
   122
        extra_config+=("--enable-oldest-abi=${CT_LIBC_OLDEST_ABI}")
bryanhundven@2181
   123
    fi
bryanhundven@2181
   124
yann@850
   125
    case "$(do_libc_add_ons_list ,)" in
yann@850
   126
        "") ;;
yann@1482
   127
        *)  extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");;
yann@850
   128
    esac
yann@850
   129
yann@1482
   130
    extra_config+=("$(do_libc_min_kernel_config)")
yann@950
   131
yann@850
   132
    # Add some default CC args
yann@1764
   133
    glibc_version="$( grep -E '\<VERSION\>' "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/version.h"  \
yann@1764
   134
                      |cut -d '"' -f 2
yann@1764
   135
                    )"
yann@1764
   136
    glibc_version_major=$(echo ${glibc_version} |sed -r -e 's/^([[:digit:]]+).*/\1/')
yann@1764
   137
    glibc_version_minor=$(echo ${glibc_version} |sed -r -e 's/^[[:digit:]]+[\.-_]([[:digit:]]+).*/\1/')
yann@850
   138
    if [    ${glibc_version_major} -eq 2 -a ${glibc_version_minor} -ge 6    \
yann@850
   139
         -o ${glibc_version_major} -gt 2                                    ]; then
yann@850
   140
        # Don't use -pipe: configure chokes on it for glibc >= 2.6.
yann@850
   141
        CT_Test 'Removing "-pipe" for use with glibc>=2.6' "${CT_USE_PIPES}" = "y"
yann@850
   142
        extra_cc_args="${CT_CFLAGS_FOR_HOST/-pipe}"
yann@850
   143
    else
yann@850
   144
        extra_cc_args="${CT_CFLAGS_FOR_HOST}"
yann@850
   145
    fi
yann@850
   146
    extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
yann@850
   147
yann@850
   148
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@850
   149
    CT_DoLog DEBUG "Using gcc for target    : '${cross_cc}'"
yann@850
   150
    CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
yann@850
   151
    CT_DoLog DEBUG "Extra config args passed: '${extra_config}'"
yann@850
   152
    CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
yann@850
   153
yann@1232
   154
    # Pre-seed the configparms file with values from the config option
yann@1627
   155
    printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
yann@850
   156
yann@850
   157
    # For glibc 2.3.4 and later we need to set some autoconf cache
yann@850
   158
    # variables, because nptl/sysdeps/pthread/configure.in does not
yann@850
   159
    # work when cross-compiling.
yann@850
   160
    if [ "${CT_THREADS}" = "nptl" ]; then
yann@850
   161
        echo libc_cv_forced_unwind=yes
yann@850
   162
        echo libc_cv_c_cleanup=yes
yann@850
   163
    fi >config.cache
yann@850
   164
yann@2002
   165
    # ./configure is mislead by our tools override wrapper for bash
yann@2002
   166
    # so just tell it where the real bash is _on_the_target_!
yann@2002
   167
    # Notes:
yann@2002
   168
    # - ${ac_cv_path_BASH_SHELL} is only used to set BASH_SHELL
yann@2002
   169
    # - ${BASH_SHELL}            is only used to set BASH
yann@2002
   170
    # - ${BASH}                  is only used to set the shebang
yann@2002
   171
    #                            in two scripts to run on the target
yann@2002
   172
    # So we can safely bypass bash detection at compile time.
yann@2002
   173
    # Should this change in a future glibc release, we'd better
yann@2002
   174
    # directly mangle the generated scripts _after_ they get built,
yann@2002
   175
    # or even after they get installed... glibc is such a sucker...
yann@2002
   176
    echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache
yann@2002
   177
yann@850
   178
    # Configure with --prefix the way we want it on the target...
yann@850
   179
    # There are a whole lot of settings here.  You'll probably want
yann@850
   180
    # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG
yann@850
   181
    # Compare these options with the ones used when installing the glibc headers above - they're different.
yann@850
   182
    # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory" 
yann@850
   183
    # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html. 
yann@850
   184
    # Set BUILD_CC, or you won't be able to build datafiles
yann@850
   185
    # Set --build, else glibc-2.3.2 will think you're not cross-compiling, and try to run the test programs
yann@850
   186
yann@850
   187
    # OK. I'm fed up with those folks telling me what I should do.
yann@850
   188
    # I don't configure nptl? Well, maybe that's purposedly because
yann@850
   189
    # I don't want nptl! --disable-sanity-checks will shut up those
yann@850
   190
    # silly messages. GNU folks again, he?
yann@850
   191
yann@1041
   192
    BUILD_CC="${CT_BUILD}-gcc"                                      \
yann@1551
   193
    CFLAGS="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} -O2"  \
yann@850
   194
    CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
yann@850
   195
    AR=${CT_TARGET}-ar                                              \
yann@850
   196
    RANLIB=${CT_TARGET}-ranlib                                      \
anthony@2154
   197
    CT_DoExecLog CFG                                                \
yann@1759
   198
    "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/configure"              \
yann@850
   199
        --prefix=/usr                                               \
yann@1041
   200
        --build=${CT_BUILD}                                         \
yann@850
   201
        --host=${CT_TARGET}                                         \
yann@850
   202
        --without-cvs                                               \
yann@850
   203
        --disable-profile                                           \
yann@850
   204
        --disable-debug                                             \
yann@850
   205
        --without-gd                                                \
yann@850
   206
        --disable-sanity-checks                                     \
yann@850
   207
        --cache-file=config.cache                                   \
yann@850
   208
        --with-headers="${CT_HEADERS_DIR}"                          \
yann@1482
   209
        "${extra_config[@]}"                                        \
yann@850
   210
        ${CT_LIBC_GLIBC_EXTRA_CONFIG}
yann@850
   211
yann@1016
   212
    # glibc initial build hacks
yann@1016
   213
    # http://sourceware.org/ml/crossgcc/2008-10/msg00068.html
yann@1016
   214
    case "${CT_ARCH},${CT_ARCH_CPU}" in
yann@1016
   215
	powerpc,8??)
yann@1016
   216
	    CT_DoLog DEBUG "Activating support for memset on broken ppc-8xx (CPU15 erratum)"
yann@1016
   217
	    GLIBC_INITIAL_BUILD_ASFLAGS="-DBROKEN_PPC_8xx_CPU15";;
yann@1016
   218
    esac
yann@1016
   219
yann@850
   220
    # If this fails with an error like this:
yann@850
   221
    # ...  linux/autoconf.h: No such file or directory 
yann@850
   222
    # then you need to set the KERNELCONFIG variable to point to a .config file for this arch.
yann@850
   223
    # The following architectures are known to need kernel .config: alpha, arm, ia64, s390, sh, sparc
yann@850
   224
    # Note: LD and RANLIB needed by glibc-2.1.3's c_stub directory, at least on macosx
yann@850
   225
    CT_DoLog EXTRA "Building C library"
yann@850
   226
    CT_DoExecLog ALL make LD=${CT_TARGET}-ld                        \
yann@1395
   227
                          RANLIB=${CT_TARGET}-ranlib                \
yann@1395
   228
                          OBJDUMP_FOR_HOST="${CT_TARGET}-objdump"   \
yann@1395
   229
                          ASFLAGS="${GLIBC_INITIAL_BUILD_ASFLAGS}"  \
yann@2267
   230
                          all
yann@850
   231
yann@850
   232
    CT_DoLog EXTRA "Installing C library"
yann@850
   233
    CT_DoExecLog ALL make install_root="${CT_SYSROOT_DIR}"          \
yann@850
   234
                          ${LIBC_SYSROOT_ARG}                       \
yann@850
   235
                          OBJDUMP_FOR_HOST="${CT_TARGET}-objdump"   \
yann@2267
   236
                          install
yann@850
   237
yann@850
   238
    # This doesn't seem to work when building a crosscompiler,
yann@850
   239
    # as it tries to execute localedef using the just-built ld.so!?
yann@850
   240
    #CT_DoLog EXTRA "Installing locales"
yann@850
   241
    #make localedata/install-locales install_root=${SYSROOT} 2>&1 |CT_DoLog ALL
yann@850
   242
yann@850
   243
    # Fix problems in linker scripts.
yann@850
   244
    #
yann@872
   245
    # Remove lines containing BUG per http://sources.redhat.com/ml/bug-glibc/2003-05/msg00055.html,
yann@850
   246
    # needed to fix gcc-3.2.3/glibc-2.3.2 targeting arm
yann@1037
   247
    # No need to look into the lib64/ dirs here and there, they point to the
yann@1037
   248
    # corresponding lib/ directories.
yann@850
   249
    #
yann@850
   250
    # To make "strip *.so.*" not fail (ptxdist does this), rename to .so_orig rather than .so.orig
yann@850
   251
    CT_DoLog EXTRA "Fixing C library linker scripts"
yann@850
   252
    for file in libc.so libpthread.so libgcc_s.so; do
yann@1037
   253
        for dir in lib usr/lib; do
yann@850
   254
            if [ -f "${CT_SYSROOT_DIR}/${dir}/${file}" -a ! -L ${CT_SYSROOT_DIR}/$lib/$file ]; then
yann@850
   255
                CT_DoExecLog ALL cp -v "${CT_SYSROOT_DIR}/${dir}/${file}" "${CT_SYSROOT_DIR}/${dir}/${file}_orig"
yann@850
   256
                CT_DoLog DEBUG "Fixing '${CT_SYS_ROOT_DIR}/${dir}/${file}'"
yann@872
   257
                CT_DoExecLog ALL sed -i -r -e '/BUG in libc.scripts.output-format.sed/d' "${CT_SYSROOT_DIR}/${dir}/${file}"
yann@850
   258
            fi
yann@850
   259
        done
yann@850
   260
    done
yann@850
   261
yann@850
   262
    CT_EndStep
yann@850
   263
}