scripts/build/libc_glibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 28 21:32:33 2008 +0000 (2008-07-28)
changeset 747 d3e603e7c17c
parent 710 021546adce69
child 752 b037a5643e04
permissions -rw-r--r--
Fourth step at renaming patches: renumber all patches with a 10-step.
yann@1
     1
# This file adds functions to build glibc
yann@1
     2
# Copyright 2007 Yann E. MORIN
yann@1
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@1
     4
yann@161
     5
do_print_filename() {
yann@161
     6
    [ "${CT_LIBC}" = "glibc" ] || return 0
yann@164
     7
    echo "glibc-${CT_LIBC_VERSION}"
yann@523
     8
    for addon in $(do_libc_add_ons_list " "); do
yann@161
     9
        # NPTL addon is not to be downloaded, in any case
yann@161
    10
        [ "${addon}" = "nptl" ] && continue || true
yann@164
    11
        echo "glibc-${addon}-${CT_LIBC_VERSION}"
yann@161
    12
    done
yann@161
    13
}
yann@161
    14
yann@63
    15
# Download glibc
yann@64
    16
do_libc_get() {
yann@63
    17
    # Ah! Not all GNU folks seem stupid. All glibc releases are in the same
yann@63
    18
    # directory. Good. Alas, there is no snapshot there. I'll deal with them
yann@63
    19
    # later on... :-/
yann@710
    20
    CT_GetFile "${CT_LIBC_FILE}"                        \
yann@710
    21
               {ftp,http}://ftp.gnu.org/gnu/glibc       \
yann@710
    22
               ftp://gcc.gnu.org/pub/glibc/releases     \
yann@710
    23
               ftp://gcc.gnu.org/pub/glibc/snapshots
yann@63
    24
yann@63
    25
    # C library addons
yann@523
    26
    for addon in $(do_libc_add_ons_list " "); do
yann@151
    27
        # NPTL addon is not to be downloaded, in any case
yann@151
    28
        [ "${addon}" = "nptl" ] && continue || true
yann@710
    29
        CT_GetFile "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" \
yann@710
    30
                   {ftp,http}://ftp.gnu.org/gnu/glibc       \
yann@710
    31
                   ftp://gcc.gnu.org/pub/glibc/releases     \
yann@710
    32
                   ftp://gcc.gnu.org/pub/glibc/snapshots
yann@63
    33
    done
yann@64
    34
yann@64
    35
    return 0
yann@63
    36
}
yann@63
    37
yann@63
    38
# Extract glibc
yann@63
    39
do_libc_extract() {
yann@63
    40
    CT_ExtractAndPatch "${CT_LIBC_FILE}"
yann@63
    41
yann@63
    42
    # C library addons
yann@523
    43
    for addon in $(do_libc_add_ons_list " "); do
yann@151
    44
        # NPTL addon is not to be extracted, in any case
yann@151
    45
        [ "${addon}" = "nptl" ] && continue || true
yann@63
    46
        CT_ExtractAndPatch "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
yann@63
    47
    done
yann@64
    48
yann@64
    49
    return 0
yann@63
    50
}
yann@63
    51
yann@1
    52
# There is nothing to do for glibc check config
yann@1
    53
do_libc_check_config() {
yann@73
    54
    :
yann@1
    55
}
yann@1
    56
yann@1
    57
# This function installs the glibc headers needed to build the core compiler
yann@1
    58
do_libc_headers() {
yann@1
    59
    # Only need to install bootstrap glibc headers for gcc-3.0 and above?  Or maybe just gcc-3.3 and above?
yann@1
    60
    # See also http://gcc.gnu.org/PR8180, which complains about the need for this step.
yann@331
    61
    grep -q 'gcc-[34]' "${CT_SRC_DIR}/${CT_CC_FILE}/ChangeLog" 2>/dev/null || return 0
yann@1
    62
yann@1
    63
    CT_DoStep INFO "Installing C library headers"
yann@1
    64
yann@1
    65
    mkdir -p "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    66
    cd "${CT_BUILD_DIR}/build-libc-headers"
yann@1
    67
yann@328
    68
    CT_DoLog EXTRA "Configuring C library"
yann@1
    69
yann@1
    70
    # The following three things have to be done to build glibc-2.3.x, but they don't hurt older versions.
yann@1
    71
    # 1. override CC to keep glibc's configure from using $TARGET-gcc. 
yann@1
    72
    # 2. disable linuxthreads, which needs a real cross-compiler to generate tcb-offsets.h properly
yann@1
    73
    # 3. build with gcc 3.2 or later
yann@1
    74
    # Compare these options with the ones used when building glibc for real below - they're different.
yann@1
    75
    # As of glibc-2.3.2, to get this step to work for hppa-linux, you need --enable-hacker-mode
yann@1
    76
    # so when configure checks to make sure gcc has access to the assembler you just built...
yann@1
    77
    # Alternately, we could put ${PREFIX}/${TARGET}/bin on the path.
yann@1
    78
    # Set --build so maybe we don't have to specify "cross-compiling=yes" below (haven't tried yet)
yann@1
    79
    # Note: the warning
yann@1
    80
    # "*** WARNING: Are you sure you do not want to use the `linuxthreads'"
yann@1
    81
    # *** add-on?"
yann@1
    82
    # is ok here, since all we want are the basic headers at this point.
yann@1
    83
    # Override libc_cv_ppc_machine so glibc-cvs doesn't complain
yann@1
    84
    # 'a version of binutils that supports .machine "altivec" is needed'.
yann@78
    85
yann@523
    86
    addons_config="--enable-add-ons=$(do_libc_add_ons_list ,)"
yann@151
    87
    # We need to remove any threading addon when installing headers
yann@151
    88
    addons_config="${addons_config//nptl/}"
yann@151
    89
    addons_config="${addons_config//linuxthreads/}"
yann@523
    90
    addons_config=$(echo "${addons_config}" |sed -r -e 's/^,+//; s/,+$//; s/,+/,/g;')
yann@151
    91
yann@523
    92
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@523
    93
    CT_DoLog DEBUG "Using gcc for target: '${cross_cc}'"
yann@523
    94
    CT_DoLog DEBUG "Extra config passed : '${addons_config}'"
yann@78
    95
yann@1
    96
    libc_cv_ppc_machine=yes                     \
yann@410
    97
    CC=${cross_cc}                              \
yann@729
    98
    CT_DoExecLog ALL                            \
yann@1
    99
    "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"   \
yann@136
   100
        --build="${CT_UNIQ_BUILD}"              \
yann@1
   101
        --host="${CT_TARGET}"                   \
yann@1
   102
        --prefix=/usr                           \
yann@1
   103
        --with-headers="${CT_HEADERS_DIR}"      \
yann@63
   104
        --without-cvs                           \
yann@63
   105
        --disable-sanity-checks                 \
yann@1
   106
        --enable-hacker-mode                    \
yann@151
   107
        ${addons_config}                        \
yann@729
   108
        --without-nptl
yann@1
   109
yann@1
   110
    CT_DoLog EXTRA "Installing C library headers"
yann@1
   111
yann@1
   112
    if grep -q GLIBC_2.3 "${CT_SRC_DIR}/${CT_LIBC_FILE}/ChangeLog"; then
yann@1
   113
        # glibc-2.3.x passes cross options to $(CC) when generating errlist-compat.c,
yann@1
   114
        # which fails without a real cross-compiler.
yann@1
   115
        # Fortunately, we don't need errlist-compat.c, since we just need .h
yann@1
   116
        # files, so work around this by creating a fake errlist-compat.c and
yann@1
   117
        # satisfying its dependencies.
yann@1
   118
        # Another workaround might be to tell configure to not use any cross
yann@1
   119
        # options to $(CC).
yann@1
   120
        # The real fix would be to get install-headers to not generate
yann@1
   121
        # errlist-compat.c.
yann@1
   122
        # Note: BOOTSTRAP_GCC is used by:
yann@1
   123
        # patches/glibc-2.3.5/glibc-mips-bootstrap-gcc-header-install.patch
yann@78
   124
yann@729
   125
        libc_cv_ppc_machine=yes             \
yann@729
   126
        CT_DoExecLog ALL                    \
yann@729
   127
        make CFLAGS="-O -DBOOTSTRAP_GCC"    \
yann@729
   128
             sysdeps/gnu/errlist.c
yann@1
   129
        mkdir -p stdio-common
yann@78
   130
yann@1
   131
        # sleep for 2 seconds for benefit of filesystems with lousy time
yann@1
   132
        # resolution, like FAT, so make knows for sure errlist-compat.c doesn't
yann@1
   133
        # need generating
yann@1
   134
        sleep 2
yann@729
   135
        CT_DoExecLog ALL touch stdio-common/errlist-compat.c
yann@1
   136
    fi
yann@1
   137
    # Note: BOOTSTRAP_GCC (see above)
yann@729
   138
    libc_cv_ppc_machine=yes             \
yann@729
   139
    CT_DoExecLog ALL                    \
yann@729
   140
    make cross-compiling=yes            \
yann@729
   141
         install_root=${CT_SYSROOT_DIR} \
yann@729
   142
         CFLAGS="-O -DBOOTSTRAP_GCC"    \
yann@729
   143
         ${LIBC_SYSROOT_ARG}            \
yann@729
   144
         install-headers
yann@1
   145
yann@1
   146
    # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
yann@1
   147
    # so do them by hand.  We can tolerate an empty stubs.h for the moment.
yann@1
   148
    # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
yann@1
   149
    mkdir -p "${CT_HEADERS_DIR}/gnu"
yann@729
   150
    CT_DoExecLog ALL touch "${CT_HEADERS_DIR}/gnu/stubs.h"
yann@729
   151
    CT_DoExecLog ALL cp -v "${CT_SRC_DIR}/${CT_LIBC_FILE}/include/features.h"  \
yann@729
   152
                           "${CT_HEADERS_DIR}/features.h"
yann@1
   153
yann@1
   154
    # Building the bootstrap gcc requires either setting inhibit_libc, or
yann@1
   155
    # having a copy of stdio_lim.h... see
yann@1
   156
    # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
yann@729
   157
    CT_DoExecLog ALL cp -v bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
yann@1
   158
yann@1
   159
    # Following error building gcc-4.0.0's gcj:
yann@1
   160
    #  error: bits/syscall.h: No such file or directory
yann@1
   161
    # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
yann@1
   162
    # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
yann@729
   163
    [ "${CT_ARCH}" != "arm" ] && CT_DoExecLog ALL cp -v misc/syscall-list.h "${CT_HEADERS_DIR}/bits/syscall.h" || true
yann@1
   164
yann@136
   165
    # Those headers are to be manually copied so gcc can build properly
yann@312
   166
    pthread_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/${CT_THREADS}/sysdeps/pthread/pthread.h"
yann@136
   167
    pthreadtypes_h=
yann@136
   168
    case "${CT_THREADS}" in
yann@136
   169
        nptl)
yann@136
   170
            # NOTE: for some archs, the pathes are different, but they are not
yann@391
   171
            # supported by crosstool-NG right now. See original crosstool when they are.
yann@136
   172
            pthread_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/${CT_THREADS}/sysdeps/pthread/pthread.h"
yann@136
   173
            pthreadtypes_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/nptl/sysdeps/unix/sysv/linux/${CT_KERNEL_ARCH}/bits/pthreadtypes.h"
yann@282
   174
            if [ ! -f "${pthreadtypes_h}" ]; then
yann@282
   175
                pthreadtypes_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/${CT_LIBC}-ports-${CT_LIBC_VERSION}/sysdeps/unix/sysv/linux/${CT_KERNEL_ARCH}/nptl/bits/pthreadtypes.h"
yann@282
   176
            fi
yann@136
   177
            ;;
yann@136
   178
        linuxthreads)
yann@136
   179
            pthreadtypes_h="${CT_SRC_DIR}/${CT_LIBC_FILE}/linuxthreads/sysdeps/pthread/bits/pthreadtypes.h"
yann@136
   180
            ;;
yann@312
   181
        *)
yann@312
   182
            pthread_h=
yann@312
   183
            pthreadtypes_h=
yann@312
   184
            ;;
yann@136
   185
    esac
yann@136
   186
    if [ -n "${pthread_h}" ]; then
yann@729
   187
        CT_DoExecLog ALL cp -v "${pthread_h}" "${CT_HEADERS_DIR}/pthread.h"
yann@136
   188
    fi
yann@136
   189
    if [ -n "${pthreadtypes_h}" ]; then
yann@729
   190
        CT_DoExecLog ALL cp -v "${pthreadtypes_h}" "${CT_HEADERS_DIR}/bits/pthreadtypes.h"
yann@136
   191
    fi
yann@136
   192
yann@136
   193
    CT_EndStep
yann@136
   194
}
yann@136
   195
yann@136
   196
# Build and install start files
yann@136
   197
do_libc_start_files() {
yann@136
   198
    # Needed only in the NPTL case. Otherwise, return.
yann@136
   199
    [ "${CT_THREADS}" = "nptl" ] || return 0
yann@136
   200
yann@136
   201
    CT_DoStep INFO "Installing C library start files"
yann@136
   202
yann@136
   203
    mkdir -p "${CT_BUILD_DIR}/build-libc-startfiles"
yann@136
   204
    cd "${CT_BUILD_DIR}/build-libc-startfiles"
yann@136
   205
yann@136
   206
    CT_DoLog EXTRA "Configuring C library"
yann@136
   207
yann@136
   208
    # Add some default glibc config options if not given by user.
yann@136
   209
    extra_config=""
yann@136
   210
    case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
yann@136
   211
        *enable-kernel*) ;;
yann@523
   212
        *) extra_config="${extra_config} --enable-kernel=$(echo ${CT_KERNEL_VERSION} |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;')"
yann@136
   213
    esac
yann@136
   214
    case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
yann@136
   215
        *-tls*) ;;
yann@136
   216
        *) extra_config="${extra_config} --with-tls"
yann@136
   217
    esac
yann@136
   218
    case "${CT_SHARED_LIBS}" in
yann@136
   219
        y) extra_config="${extra_config} --enable-shared";;
yann@136
   220
        *) extra_config="${extra_config} --disable-shared";;
yann@136
   221
    esac
yann@391
   222
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@391
   223
        y,) extra_config="${extra_config} --with-fp";;
yann@391
   224
        ,y) extra_config="${extra_config} --without-fp";;
yann@136
   225
    esac
yann@136
   226
    # Obviously, we want threads, as we come here only for NPTL
yann@136
   227
    extra_config="${extra_config} --with-__thread"
yann@136
   228
yann@523
   229
    addons_config="--enable-add-ons=$(do_libc_add_ons_list ,)"
yann@136
   230
    extra_config="${extra_config} ${addons_config}"
yann@136
   231
yann@136
   232
    # Add some default CC args
yann@328
   233
    glibc_version_major=$(echo ${CT_LIBC_VERSION} |sed -r -e 's/^([^\.]+)\..*/\1/')
yann@328
   234
    glibc_version_minor=$(echo ${CT_LIBC_VERSION} |sed -r -e 's/^[^\.]+\.([^.]+).*/\1/')
yann@710
   235
    # In case we're using a snapshot, fake a >=2.6 version.
yann@710
   236
    if [    "${CT_LIBC_V_LATEST}" = "y" \
yann@710
   237
         -o "${CT_LIBC_V_date}" = "y"   ]; then
yann@710
   238
        glibc_version_major=3
yann@710
   239
        glibc_version_minor=0
yann@710
   240
    fi
yann@482
   241
    if [    ${glibc_version_major} -eq 2 -a ${glibc_version_minor} -ge 6    \
yann@482
   242
         -o ${glibc_version_major} -gt 2                                    ]; then
yann@328
   243
        # Don't use -pipe: configure chokes on it for glibc >= 2.6.
yann@332
   244
        CT_Test 'Removing "-pipe" for use with glibc>=2.6' "${CT_USE_PIPES}" = "y"
yann@328
   245
        extra_cc_args="${CT_CFLAGS_FOR_HOST/-pipe}"
yann@328
   246
    else
yann@328
   247
        extra_cc_args="${CT_CFLAGS_FOR_HOST}"
yann@328
   248
    fi
yann@383
   249
    extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
yann@136
   250
yann@523
   251
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@523
   252
    CT_DoLog DEBUG "Using gcc for target    : '${cross_cc}'"
yann@523
   253
    CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
yann@523
   254
    CT_DoLog DEBUG "Extra config args passed: '${extra_config}'"
yann@523
   255
    CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
yann@136
   256
yann@391
   257
    # Super-H really needs to set configparms as of gcc-3.4/glibc-2.3.2
yann@391
   258
    # note: this is awkward, doesn't work well if you need more than one
yann@391
   259
    # line in configparms
yann@136
   260
    echo ${CT_LIBC_GLIBC_CONFIGPARMS} > configparms
yann@136
   261
yann@136
   262
    echo "libc_cv_forced_unwind=yes" > config.cache
yann@136
   263
    echo "libc_cv_c_cleanup=yes" >> config.cache
yann@136
   264
yann@136
   265
    # Please see the comment for the configure step in do_libc().
yann@136
   266
yann@136
   267
    BUILD_CC=${CT_CC_NATIVE}                                        \
yann@328
   268
    CFLAGS="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} -O "  \
yann@410
   269
    CC="${cross_cc} ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}"      \
yann@136
   270
    AR=${CT_TARGET}-ar                                              \
yann@136
   271
    RANLIB=${CT_TARGET}-ranlib                                      \
yann@729
   272
    CT_DoExecLog ALL                                                \
yann@136
   273
    "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"                       \
yann@136
   274
        --prefix=/usr                                               \
yann@136
   275
        --build="${CT_UNIQ_BUILD}"                                  \
yann@136
   276
        --host=${CT_TARGET}                                         \
yann@136
   277
        --without-cvs                                               \
yann@136
   278
        --disable-profile                                           \
yann@136
   279
        --disable-debug                                             \
yann@136
   280
        --without-gd                                                \
yann@136
   281
        --with-headers="${CT_HEADERS_DIR}"                          \
yann@136
   282
        --cache-file=config.cache                                   \
yann@136
   283
        ${extra_config}                                             \
yann@729
   284
        ${CT_LIBC_GLIBC_EXTRA_CONFIG}
yann@136
   285
yann@136
   286
yann@136
   287
    #TODO: should check whether slibdir has been set in configparms to */lib64
yann@136
   288
    #      and copy the startfiles into the appropriate libdir.
yann@328
   289
    CT_DoLog EXTRA "Building C library start files"
yann@729
   290
    CT_DoExecLog ALL make csu/subdir_lib
yann@136
   291
yann@328
   292
    CT_DoLog EXTRA "Installing C library start files"
yann@136
   293
    if [ "${CT_USE_SYSROOT}" = "y" ]; then
yann@729
   294
        CT_DoExecLog ALL cp -fpv csu/crt[1in].o "${CT_SYSROOT_DIR}/usr/lib/"
yann@136
   295
    else
yann@729
   296
        CT_DoExecLog ALL cp -fpv csu/crt[1in].o "${CT_SYSROOT_DIR}/lib/"
yann@136
   297
    fi
yann@136
   298
yann@1
   299
    CT_EndStep
yann@1
   300
}
yann@1
   301
yann@1
   302
# This function builds and install the full glibc
yann@1
   303
do_libc() {
yann@1
   304
    CT_DoStep INFO "Installing C library"
yann@1
   305
yann@1
   306
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@1
   307
    cd "${CT_BUILD_DIR}/build-libc"
yann@1
   308
yann@1
   309
    CT_DoLog EXTRA "Configuring C library"
yann@1
   310
yann@1
   311
    # Add some default glibc config options if not given by user.
yann@136
   312
    # We don't need to be conditional on wether the user did set different
yann@136
   313
    # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG is passed after extra_config
yann@136
   314
yann@523
   315
    extra_config="--enable-kernel=$(echo ${CT_KERNEL_VERSION} |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;')"
yann@136
   316
yann@136
   317
    case "${CT_THREADS}" in
yann@136
   318
        nptl)           extra_config="${extra_config} --with-__thread --with-tls";;
yann@136
   319
        linuxthreads)   extra_config="${extra_config} --with-__thread --without-tls --without-nptl";;
yann@136
   320
        none)           extra_config="${extra_config} --without-__thread --without-nptl"
yann@136
   321
                        case "${CT_LIBC_GLIBC_EXTRA_CONFIG}" in
yann@136
   322
                            *-tls*) ;;
yann@136
   323
                            *) extra_config="${extra_config} --without-tls";;
yann@136
   324
                        esac
yann@136
   325
                        ;;
yann@1
   326
    esac
yann@136
   327
yann@1
   328
    case "${CT_SHARED_LIBS}" in
yann@1
   329
        y) extra_config="${extra_config} --enable-shared";;
yann@1
   330
        *) extra_config="${extra_config} --disable-shared";;
yann@1
   331
    esac
yann@136
   332
yann@136
   333
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@136
   334
        y,) extra_config="${extra_config} --with-fp";;
yann@136
   335
        ,y) extra_config="${extra_config} --without-fp";;
yann@1
   336
    esac
yann@78
   337
yann@523
   338
    case "$(do_libc_add_ons_list ,)" in
yann@151
   339
        "") ;;
yann@523
   340
        *)  extra_config="${extra_config} --enable-add-ons=$(do_libc_add_ons_list ,)";;
yann@136
   341
    esac
yann@151
   342
yann@136
   343
    # Add some default CC args
yann@328
   344
    glibc_version_major=$(echo ${CT_LIBC_VERSION} |sed -r -e 's/^([^\.]+)\..*/\1/')
yann@328
   345
    glibc_version_minor=$(echo ${CT_LIBC_VERSION} |sed -r -e 's/^[^\.]+\.([^.]+).*/\1/')
yann@710
   346
    # In case we're using a snapshot, fake a >=2.6 version.
yann@710
   347
    if [    "${CT_LIBC_V_LATEST}" = "y" \
yann@710
   348
         -o "${CT_LIBC_V_date}" = "y"   ]; then
yann@710
   349
        glibc_version_major=3
yann@710
   350
        glibc_version_minor=0
yann@710
   351
    fi
yann@482
   352
    if [    ${glibc_version_major} -eq 2 -a ${glibc_version_minor} -ge 6    \
yann@482
   353
         -o ${glibc_version_major} -gt 2                                    ]; then
yann@328
   354
        # Don't use -pipe: configure chokes on it for glibc >= 2.6.
yann@332
   355
        CT_Test 'Removing "-pipe" for use with glibc>=2.6' "${CT_USE_PIPES}" = "y"
yann@328
   356
        extra_cc_args="${CT_CFLAGS_FOR_HOST/-pipe}"
yann@328
   357
    else
yann@328
   358
        extra_cc_args="${CT_CFLAGS_FOR_HOST}"
yann@136
   359
    fi
yann@383
   360
    extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
yann@1
   361
yann@523
   362
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@523
   363
    CT_DoLog DEBUG "Using gcc for target    : '${cross_cc}'"
yann@523
   364
    CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
yann@523
   365
    CT_DoLog DEBUG "Extra config args passed: '${extra_config}'"
yann@523
   366
    CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
yann@1
   367
yann@1
   368
    # sh3 and sh4 really need to set configparms as of gcc-3.4/glibc-2.3.2
yann@1
   369
    # note: this is awkward, doesn't work well if you need more than one line in configparms
yann@1
   370
    echo ${CT_LIBC_GLIBC_CONFIGPARMS} > configparms
yann@1
   371
yann@1
   372
    # For glibc 2.3.4 and later we need to set some autoconf cache
yann@1
   373
    # variables, because nptl/sysdeps/pthread/configure.in does not
yann@1
   374
    # work when cross-compiling.
yann@136
   375
    if [ "${CT_THREADS}" = "nptl" ]; then
yann@136
   376
        echo libc_cv_forced_unwind=yes
yann@136
   377
        echo libc_cv_c_cleanup=yes
yann@136
   378
    fi >config.cache
yann@1
   379
yann@1
   380
    # Configure with --prefix the way we want it on the target...
yann@1
   381
    # There are a whole lot of settings here.  You'll probably want
yann@1
   382
    # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG
yann@1
   383
    # Compare these options with the ones used when installing the glibc headers above - they're different.
yann@1
   384
    # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory" 
yann@1
   385
    # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html. 
yann@1
   386
    # Set BUILD_CC, or you won't be able to build datafiles
yann@1
   387
    # Set --build, else glibc-2.3.2 will think you're not cross-compiling, and try to run the test programs
yann@1
   388
yann@136
   389
    # OK. I'm fed up with those folks telling me what I should do.
yann@136
   390
    # I don't configure nptl? Well, maybe that's purposedly because
yann@136
   391
    # I don't want nptl! --disable-sanity-checks will shut up those
yann@136
   392
    # silly messages. GNU folks again, he?
yann@136
   393
yann@1
   394
    BUILD_CC=${CT_CC_NATIVE}                                        \
yann@1
   395
    CFLAGS="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} -O"   \
yann@328
   396
    CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
yann@1
   397
    AR=${CT_TARGET}-ar                                              \
yann@1
   398
    RANLIB=${CT_TARGET}-ranlib                                      \
yann@729
   399
    CT_DoExecLog ALL                                                \
yann@1
   400
    "${CT_SRC_DIR}/${CT_LIBC_FILE}/configure"                       \
yann@1
   401
        --prefix=/usr                                               \
yann@136
   402
        --build=${CT_UNIQ_BUILD}                                    \
yann@136
   403
        --host=${CT_TARGET}                                         \
yann@1
   404
        --without-cvs                                               \
yann@1
   405
        --disable-profile                                           \
yann@1
   406
        --disable-debug                                             \
yann@1
   407
        --without-gd                                                \
yann@136
   408
        --disable-sanity-checks                                     \
yann@136
   409
        --cache-file=config.cache                                   \
yann@78
   410
        --with-headers="${CT_HEADERS_DIR}"                          \
yann@78
   411
        ${extra_config}                                             \
yann@729
   412
        ${CT_LIBC_GLIBC_EXTRA_CONFIG}
yann@1
   413
yann@1
   414
    if grep -l '^install-lib-all:' "${CT_SRC_DIR}/${CT_LIBC_FILE}/Makerules" > /dev/null; then
yann@1
   415
        # nptl-era glibc.
yann@1
   416
        # If the install-lib-all target (which is added by our make-install-lib-all.patch)
yann@1
   417
        # is present, it means we're building glibc-2.3.3 or later, and we can't
yann@1
   418
        # build programs yet, as they require libeh, which won't be installed
yann@1
   419
        # until full build of gcc
yann@481
   420
        # YEM-FIXME: This comment is misleading: latest glibc-s do not have the
yann@481
   421
        #            make-install-lib-all.patch applied, so do not pass through this
yann@481
   422
        #            part of the if statement; nonetheless, they do build, and
yann@481
   423
        #            the result is useable (maybe the dual-pass core gcc is
yann@481
   424
        #            responsible for this).
yann@1
   425
        GLIBC_INITIAL_BUILD_RULE=lib
yann@1
   426
        GLIBC_INITIAL_INSTALL_RULE="install-lib-all install-headers"
yann@1
   427
        GLIBC_INSTALL_APPS_LATER=yes
yann@1
   428
    else
yann@1
   429
        # classic glibc.  
yann@1
   430
        # We can build and install everything with the bootstrap compiler.
yann@496
   431
        # YEM-FIXME: See the above FIXME as well.
yann@1
   432
        GLIBC_INITIAL_BUILD_RULE=all
yann@1
   433
        GLIBC_INITIAL_INSTALL_RULE=install
yann@1
   434
        GLIBC_INSTALL_APPS_LATER=no
yann@1
   435
    fi
yann@1
   436
yann@1
   437
    # If this fails with an error like this:
yann@1
   438
    # ...  linux/autoconf.h: No such file or directory 
yann@1
   439
    # then you need to set the KERNELCONFIG variable to point to a .config file for this arch.
yann@1
   440
    # The following architectures are known to need kernel .config: alpha, arm, ia64, s390, sh, sparc
yann@1
   441
    # Note: LD and RANLIB needed by glibc-2.1.3's c_stub directory, at least on macosx
yann@1
   442
    # No need for PARALLELMFLAGS here, Makefile already reads this environment variable
yann@1
   443
    CT_DoLog EXTRA "Building C library"
yann@729
   444
    CT_DoExecLog ALL make LD=${CT_TARGET}-ld            \
yann@729
   445
                           RANLIB=${CT_TARGET}-ranlib   \
yann@729
   446
                           ${GLIBC_INITIAL_BUILD_RULE}
yann@1
   447
yann@1
   448
    CT_DoLog EXTRA "Installing C library"
yann@729
   449
    CT_DoExecLog ALL make install_root="${CT_SYSROOT_DIR}"  \
yann@729
   450
                          ${LIBC_SYSROOT_ARG}               \
yann@729
   451
                          ${GLIBC_INITIAL_INSTALL_RULE}
yann@1
   452
yann@1
   453
    # This doesn't seem to work when building a crosscompiler,
yann@1
   454
    # as it tries to execute localedef using the just-built ld.so!?
yann@1
   455
    #CT_DoLog EXTRA "Installing locales"
yann@78
   456
    #make localedata/install-locales install_root=${SYSROOT} 2>&1 |CT_DoLog ALL
yann@1
   457
yann@1
   458
    # Fix problems in linker scripts.
yann@1
   459
    #
yann@1
   460
    # 1. Remove absolute paths
yann@1
   461
    # Any file in a list of known suspects that isn't a symlink is assumed to be a linker script.
yann@1
   462
    # FIXME: test -h is not portable
yann@1
   463
    # FIXME: probably need to check more files than just these three...
yann@1
   464
    # Need to use sed instead of just assuming we know what's in libc.so because otherwise alpha breaks
yann@1
   465
    #
yann@1
   466
    # 2. Remove lines containing BUG per http://sources.redhat.com/ml/bug-glibc/2003-05/msg00055.html,
yann@1
   467
    # needed to fix gcc-3.2.3/glibc-2.3.2 targeting arm
yann@1
   468
    #
yann@1
   469
    # To make "strip *.so.*" not fail (ptxdist does this), rename to .so_orig rather than .so.orig
yann@1
   470
    CT_DoLog EXTRA "Fixing C library linker scripts"
yann@1
   471
    for file in libc.so libpthread.so libgcc_s.so; do
yann@1
   472
        for dir in lib lib64 usr/lib usr/lib64; do
yann@1
   473
            if [ -f "${CT_SYSROOT_DIR}/${dir}/${file}" -a ! -L ${CT_SYSROOT_DIR}/$lib/$file ]; then
yann@729
   474
                CT_DoExecLog ALL cp -v "${CT_SYSROOT_DIR}/${dir}/${file}" "${CT_SYSROOT_DIR}/${dir}/${file}_orig"
yann@523
   475
                CT_DoLog DEBUG "Fixing '${CT_SYS_ROOT_DIR}/${dir}/${file}'"
yann@729
   476
                CT_DoExecLog ALL sed -i -r -e 's,/usr/lib/,,g;
yann@729
   477
                                               s,/usr/lib64/,,g;
yann@729
   478
                                               s,/lib/,,g;
yann@729
   479
                                               s,/lib64/,,g;
yann@729
   480
                                               /BUG in libc.scripts.output-format.sed/d' "${CT_SYSROOT_DIR}/${dir}/${file}"
yann@1
   481
            fi
yann@1
   482
        done
yann@1
   483
    done
yann@1
   484
yann@1
   485
    CT_EndStep
yann@1
   486
}
yann@1
   487
yann@1
   488
# This function finishes the glibc install
yann@1
   489
do_libc_finish() {
yann@1
   490
    # Finally, build and install glibc programs, now that libeh (if any) is installed
yann@1
   491
    # Don't do this unless needed, 'cause it causes glibc-2.{1.3,2.2} to fail here with
yann@1
   492
    # .../gcc-3.4.1-glibc-2.1.3/build-glibc/libc.so.6: undefined reference to `__deregister_frame_info'
yann@1
   493
    # .../gcc-3.4.1-glibc-2.1.3/build-glibc/libc.so.6: undefined reference to `__register_frame_info'
yann@1
   494
    [ "${GLIBC_INSTALL_APPS_LATER}" = "yes" ] || return 0
yann@1
   495
yann@1
   496
    CT_DoStep INFO "Finishing C library"
yann@1
   497
yann@1
   498
    cd "${CT_BUILD_DIR}/build-libc"
yann@1
   499
yann@1
   500
    CT_DoLog EXTRA "Re-building C library"
yann@729
   501
    CT_DoExecLog ALL make LD=${CT_TARGET}-ld RANLIB=${CT_TARGET}-ranlib
yann@1
   502
yann@1
   503
    CT_DoLog EXTRA "Installing missing C library components"
yann@1
   504
    # note: should do full install and then fix linker scripts, but this is faster
yann@1
   505
    for t in bin rootsbin sbin data others; do
yann@729
   506
        CT_DoExecLog ALL make install_root="${CT_SYSROOT_DIR}"  \
yann@729
   507
                              ${LIBC_SYSROOT_ARG}               \
yann@729
   508
                              install-${t}
yann@1
   509
    done
yann@78
   510
yann@78
   511
    CT_EndStep
yann@1
   512
}
yann@151
   513
yann@151
   514
# Build up the addons list, separated with $1
yann@151
   515
do_libc_add_ons_list() {
yann@151
   516
    local sep="$1"
yann@523
   517
    local addons_list=$(echo "${CT_LIBC_ADDONS_LIST//,/${sep}}" |tr -s ,)
yann@151
   518
    case "${CT_THREADS}" in
yann@151
   519
        none)   ;;
yann@151
   520
        *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
yann@151
   521
    esac
yann@151
   522
    [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
yann@151
   523
    addons_list="${addons_list%%${sep}}"
yann@151
   524
    echo "${addons_list##${sep}}"
yann@151
   525
}
yann@151
   526