scripts/build/libc/glibc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 04 22:17:53 2009 +0000 (2009-01-04)
changeset 1123 8c5881324a79
parent 1121 4b7ed9da5a21
child 1124 eec7a46a4c19
permissions -rw-r--r--
Get rid of CT_LIBC_FILE, remove useless CT_MakeAbsolutePath.

CT_LIBC_FILE:
- that one was not easy, as it had sneaked into CT_ExtractAndPatch
- which in turn made CT_ExtractAndPatch have references to C library addons
- which in turn relieved the C library _extract functions from doing their own job
- which in turn imposed some nasty tricks in CT_ExtractAndPatch
- which in turn made life easier for the DUMA _get and _extract functions
- which unveiled some bizare behavior for pushd and popd:
- if using smthg ike: 'pushd foo |bar':
- the directory is *neither* changed
- *nor* is it pushed onto the stack
- which made popd fail

CT_MakeAbsolutePath:
- used only to make CT_LOCAL_TARBALLS_DIR canonical
- which is ((almost) useless:
- hopefully, the user entered a full path already
- if it's not the case, too bad...

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