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