scripts/build/libc/glibc-eglibc.sh-common
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Nov 22 00:11:51 2011 +0100 (2011-11-22)
changeset 2822 09abd5f4295b
parent 2821 fc0afaf5c817
child 2823 5b2025372db7
permissions -rw-r--r--
libc/glibc: set the endian option according to extra CFLAGS

When building a multilib, some extra CFLAGS can override the
default config option. This is the case for the endianness
selection.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@2270
     1
# This file contains the functions common to glibc and eglibc
yann@850
     2
yann@2483
     3
# Extract the C library tarball(s)
yann@2483
     4
do_libc_extract() {
yann@2483
     5
    local addon
yann@2483
     6
yann@2483
     7
    # Extract the main tarball
yann@2483
     8
    CT_Extract "${CT_LIBC}-${CT_LIBC_VERSION}"
yann@2483
     9
    CT_Pushd "${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
yann@2483
    10
    CT_Patch nochdir "${CT_LIBC}" "${CT_LIBC_VERSION}"
yann@2483
    11
yann@2483
    12
    # Extract the add-opns
yann@2483
    13
    for addon in $(do_libc_add_ons_list " "); do
yann@2496
    14
        # If the addon was bundled with the main archive, we do not
yann@2496
    15
        # need to extract it. Worse, if we were to try to extract
yann@2496
    16
        # it, we'd get an error.
yann@2496
    17
        if [ -d "${addon}" ]; then
yann@2496
    18
            CT_DoLog DEBUG "Add-on already present, spkipping extraction"
yann@2496
    19
            continue
yann@2496
    20
        fi
yann@2483
    21
yann@2483
    22
        CT_Extract nochdir "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
yann@2483
    23
yann@2483
    24
        CT_TestAndAbort "Error in add-on '${addon}': both short and long names in tarball" \
yann@2483
    25
            -d "${addon}" -a -d "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
yann@2483
    26
yann@2483
    27
        # Some addons have the 'long' name, while others have the
yann@2483
    28
        # 'short' name, but patches are non-uniformly built with
yann@2483
    29
        # either the 'long' or 'short' name, whatever the addons name
yann@2483
    30
        # but we prefer the 'short' name and avoid duplicates.
yann@2483
    31
        if [ -d "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" ]; then
esben@2699
    32
            CT_DoExecLog FILE mv "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" "${addon}"
yann@2483
    33
        fi
yann@2483
    34
esben@2699
    35
        CT_DoExecLog FILE ln -s "${addon}" "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
yann@2483
    36
yann@2483
    37
        CT_Patch nochdir "${CT_LIBC}" "${addon}-${CT_LIBC_VERSION}"
yann@2483
    38
yann@2483
    39
        # Remove the long name since it can confuse configure scripts to run
yann@2483
    40
        # the same source twice.
yann@2483
    41
        rm "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}"
yann@2483
    42
    done
yann@2483
    43
yann@2483
    44
    # The configure files may be older than the configure.in files
yann@2483
    45
    # if using a snapshot (or even some tarballs). Fake them being
yann@2483
    46
    # up to date.
yann@2483
    47
    find . -type f -name configure -exec touch {} \; 2>&1 |CT_DoLog ALL
yann@2483
    48
yann@2483
    49
    CT_Popd
benoit@2585
    50
benoit@2585
    51
    if [ "${CT_LIBC_LOCALES}" = "y" ]; then
benoit@2585
    52
        do_libc_locales_extract
benoit@2585
    53
    fi
yann@2483
    54
}
yann@2483
    55
yann@2270
    56
# Build and install headers and start files
yann@850
    57
do_libc_start_files() {
bryanhundven@2515
    58
    # Start files and Headers should be configured the same way as the
bryanhundven@2515
    59
    # final libc, but built and installed differently.
bryanhundven@2515
    60
    do_libc_backend libc_mode=startfiles
yann@850
    61
}
yann@850
    62
yann@2270
    63
# This function builds and install the full C library
yann@850
    64
do_libc() {
bryanhundven@2515
    65
    do_libc_backend libc_mode=final
bryanhundven@2515
    66
}
bryanhundven@2515
    67
yann@2806
    68
# Usage: do_libc_backend param=value [...]
yann@2806
    69
#   Parameter           : Definition                            : Type      : Default
yann@2819
    70
#   libc_mode           : 'startfiles' or 'final'               : string    : (none)
yann@2820
    71
#   extra_flags         : Extra CFLAGS to use (for multilib)    : string    : (empty)
bryanhundven@2515
    72
do_libc_backend() {
yann@2819
    73
    local libc_mode
yann@2820
    74
    local extra_flags
yann@2271
    75
    local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
yann@2276
    76
    local extra_cc_args
yann@1478
    77
    local -a extra_config
yann@2271
    78
    local -a extra_make_args
yann@2312
    79
    local glibc_cflags
yann@2821
    80
    local float_extra
yann@2822
    81
    local endian_extra
yann@1478
    82
bryanhundven@2515
    83
    while [ $# -ne 0 ]; do
yann@2542
    84
        eval "${1// /\\ }"
bryanhundven@2515
    85
        shift
bryanhundven@2515
    86
    done
yann@850
    87
yann@2819
    88
    case "${libc_mode}" in
yann@2819
    89
        startfiles) CT_DoStep INFO "Installing C library headers & start files";;
yann@2819
    90
        final)      CT_DoStep INFO "Installing C library";;
yann@2819
    91
        *)          CT_Abort "Unsupported (or unset) libc_mode='${libc_mode}'";;
yann@2819
    92
    esac
yann@2805
    93
    mkdir -p "${CT_BUILD_DIR}/build-libc-${libc_mode}"
yann@2805
    94
    cd "${CT_BUILD_DIR}/build-libc-${libc_mode}"
yann@850
    95
yann@850
    96
    CT_DoLog EXTRA "Configuring C library"
yann@850
    97
yann@2271
    98
    case "${CT_LIBC}" in
yann@2271
    99
        eglibc)
yann@2271
   100
            if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
yann@2271
   101
                CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
yann@2271
   102
            fi
yann@2271
   103
            if [ "${CT_EGLIBC_OPT_SIZE}" = "y" ]; then
yann@2271
   104
                OPTIMIZE=-Os
yann@2271
   105
            else
yann@2271
   106
                OPTIMIZE=-O2
yann@2271
   107
            fi
yann@2271
   108
            ;;
yann@2276
   109
        glibc)
yann@2276
   110
            # glibc can't be built without -O2 (reference needed!)
yann@2276
   111
            OPTIMIZE=-O2
yann@2276
   112
            # Also, if those two are missing, iconv build breaks
yann@2276
   113
            extra_config+=( --disable-debug --disable-sanity-checks )
yann@2276
   114
            ;;
yann@2271
   115
    esac
richard@1796
   116
yann@850
   117
    # Add some default glibc config options if not given by user.
yann@850
   118
    # We don't need to be conditional on wether the user did set different
yann@2467
   119
    # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY is passed after
yann@2467
   120
    # extra_config
yann@850
   121
yann@2273
   122
    extra_config+=("$(do_libc_min_kernel_config)")
yann@850
   123
yann@850
   124
    case "${CT_THREADS}" in
yann@1478
   125
        nptl)           extra_config+=("--with-__thread" "--with-tls");;
yann@1478
   126
        linuxthreads)   extra_config+=("--with-__thread" "--without-tls" "--without-nptl");;
yann@1478
   127
        none)           extra_config+=("--without-__thread" "--without-nptl")
yann@2467
   128
                        case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
yann@850
   129
                            *-tls*) ;;
yann@1478
   130
                            *) extra_config+=("--without-tls");;
yann@850
   131
                        esac
yann@850
   132
                        ;;
yann@850
   133
    esac
yann@850
   134
yann@850
   135
    case "${CT_SHARED_LIBS}" in
yann@1478
   136
        y) extra_config+=("--enable-shared");;
yann@1478
   137
        *) extra_config+=("--disable-shared");;
yann@850
   138
    esac
yann@850
   139
yann@2821
   140
    float_extra="$( echo "${extra_flags}"       \
yann@2821
   141
                    |${sed} -r -e '/^(.*[[:space:]])?-m(hard|soft)-float([[:space:]].*)?$/!d;'  \
yann@2821
   142
                               -e 's//\2/;'     \
yann@2821
   143
                  )"
yann@2821
   144
    case "${float_extra}" in
michael@2737
   145
        hard)   extra_config+=("--with-fp");;
michael@2737
   146
        soft)   extra_config+=("--without-fp");;
yann@2821
   147
        "")
yann@2821
   148
            case "${CT_ARCH_FLOAT}" in
yann@2821
   149
                hard|softfp)    extra_config+=("--with-fp");;
yann@2821
   150
                soft)           extra_config+=("--without-fp");;
yann@2821
   151
            esac
yann@2821
   152
            ;;
yann@850
   153
    esac
yann@850
   154
bryanhundven@2180
   155
    if [ "${CT_LIBC_DISABLE_VERSIONING}" = "y" ]; then
bryanhundven@2180
   156
        extra_config+=("--disable-versioning")
bryanhundven@2180
   157
    fi
bryanhundven@2180
   158
bryanhundven@2181
   159
    if [ "${CT_LIBC_OLDEST_ABI}" != "" ]; then
bryanhundven@2181
   160
        extra_config+=("--enable-oldest-abi=${CT_LIBC_OLDEST_ABI}")
bryanhundven@2181
   161
    fi
bryanhundven@2181
   162
yann@850
   163
    case "$(do_libc_add_ons_list ,)" in
benoit@2573
   164
        "") extra_config+=("--enable-add-ons=no");;
yann@1478
   165
        *)  extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");;
yann@850
   166
    esac
yann@850
   167
benoit@2489
   168
    if [ "${CT_LIBC_EGLIBC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
benoit@2503
   169
        extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
benoit@2503
   170
        [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
benoit@2489
   171
    fi
benoit@2489
   172
yann@2822
   173
    # Extract the endianness options if any
yann@2822
   174
    # This should cover all possible endianness options
yann@2822
   175
    # in gcc, but it is prone to bit-rot... :-(
yann@2822
   176
    endian_extra="$( echo "${extra_flags}"      \
yann@2822
   177
                     |${sed} -r -e '/^(.*[[:space:]])?-(E[BL]|m((big|little)(-endian)?|e?[bl]))([[:space:]].*)?$/!d;' \
yann@2822
   178
                                -e 's//\2/;'    \
yann@2822
   179
                   )"
yann@2822
   180
    case "${endian_extra}" in
yann@2822
   181
        EB|mbig-endian|mbig|meb|mb)
yann@2822
   182
            extra_cc_args="${extra_cc_args} ${endian_extra}"
yann@2822
   183
            ;;
yann@2822
   184
        EL|mlittle-endian|mlittle|mel|ml)
yann@2822
   185
            extra_cc_args="${extra_cc_args} ${endian_extra}"
yann@2822
   186
            ;;
yann@2822
   187
        "") extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
yann@2822
   188
            ;;
yann@2822
   189
    esac
yann@850
   190
yann@2289
   191
    touch config.cache
yann@2289
   192
    if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
yann@2289
   193
        echo "libc_cv_forced_unwind=yes" >>config.cache
yann@2289
   194
        echo "libc_cv_c_cleanup=yes" >>config.cache
yann@2289
   195
    fi
yann@2289
   196
yann@2276
   197
    # Pre-seed the configparms file with values from the config option
yann@2276
   198
    printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
yann@2276
   199
benoit@2489
   200
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@2820
   201
    extra_cc_args+=" ${extra_flags}"
yann@850
   202
yann@850
   203
    CT_DoLog DEBUG "Using gcc for target:     '${cross_cc}'"
yann@850
   204
    CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
yann@1478
   205
    CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'"
yann@850
   206
    CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
yann@2820
   207
    CT_DoLog DEBUG "Extra flags (multilib)  : '${extra_flags}'"
yann@850
   208
yann@2312
   209
    glibc_cflags="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} ${OPTIMIZE}"
yann@2312
   210
    case "${CT_LIBC_ENABLE_FORTIFIED_BUILD}" in
yann@2312
   211
        y)  ;;
yann@2312
   212
        *)  glibc_cflags+=" -U_FORTIFY_SOURCE";;
yann@2312
   213
    esac
yann@2312
   214
bryanhundven@2229
   215
    # ./configure is mislead by our tools override wrapper for bash
bryanhundven@2229
   216
    # so just tell it where the real bash is _on_the_target_!
bryanhundven@2229
   217
    # Notes:
bryanhundven@2229
   218
    # - ${ac_cv_path_BASH_SHELL} is only used to set BASH_SHELL
bryanhundven@2229
   219
    # - ${BASH_SHELL}            is only used to set BASH
bryanhundven@2229
   220
    # - ${BASH}                  is only used to set the shebang
bryanhundven@2229
   221
    #                            in two scripts to run on the target
bryanhundven@2229
   222
    # So we can safely bypass bash detection at compile time.
bryanhundven@2229
   223
    # Should this change in a future eglibc release, we'd better
bryanhundven@2229
   224
    # directly mangle the generated scripts _after_ they get built,
bryanhundven@2229
   225
    # or even after they get installed... eglibc is such a sucker...
yann@2289
   226
    echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache
bryanhundven@2229
   227
yann@2276
   228
    # Configure with --prefix the way we want it on the target...
yann@2276
   229
    # There are a whole lot of settings here.  You'll probably want
yann@2467
   230
    # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG_ARRAY
yann@2276
   231
    # Compare these options with the ones used when installing the glibc headers above - they're different.
yann@2276
   232
    # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory"
yann@2276
   233
    # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html.
yann@2276
   234
    # Set BUILD_CC, or we won't be able to build datafiles
yann@2706
   235
    # Run explicitly through CONFIG_SHELL, or the build breaks badly (loop-of-death)
yann@2706
   236
    # when the shell is not bash... Sigh... :-(
yann@2276
   237
yann@2353
   238
    CT_DoExecLog CFG                                                \
yann@1041
   239
    BUILD_CC="${CT_BUILD}-gcc"                                      \
yann@2312
   240
    CFLAGS="${glibc_cflags}"                                        \
yann@850
   241
    CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
yann@850
   242
    AR=${CT_TARGET}-ar                                              \
yann@850
   243
    RANLIB=${CT_TARGET}-ranlib                                      \
yann@2706
   244
    "${CONFIG_SHELL}"                                               \
yann@2271
   245
    "${src_dir}/configure"                                          \
yann@850
   246
        --prefix=/usr                                               \
yann@1041
   247
        --build=${CT_BUILD}                                         \
yann@850
   248
        --host=${CT_TARGET}                                         \
yann@2289
   249
        --cache-file="$(pwd)/config.cache"                          \
yann@2276
   250
        --without-cvs                                               \
yann@850
   251
        --disable-profile                                           \
yann@850
   252
        --without-gd                                                \
yann@2276
   253
        --with-headers="${CT_HEADERS_DIR}"                          \
yann@1478
   254
        "${extra_config[@]}"                                        \
yann@2467
   255
        "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[@]}"
benoit@2489
   256
yann@2276
   257
    # build hacks
yann@2276
   258
    case "${CT_ARCH},${CT_ARCH_CPU}" in
yann@2276
   259
        powerpc,8??)
yann@2276
   260
            # http://sourceware.org/ml/crossgcc/2008-10/msg00068.html
yann@2276
   261
            CT_DoLog DEBUG "Activating support for memset on broken ppc-8xx (CPU15 erratum)"
yann@2276
   262
            extra_make_args+=( ASFLAGS="-DBROKEN_PPC_8xx_CPU15" )
yann@2271
   263
            ;;
yann@1328
   264
    esac
yann@1328
   265
bryanhundven@2515
   266
    if [ "${libc_mode}" = "startfiles" ]; then
bryanhundven@2515
   267
        CT_DoLog EXTRA "Installing C library headers"
yann@850
   268
bryanhundven@2515
   269
        # use the 'install-headers' makefile target to install the
bryanhundven@2515
   270
        # headers
bryanhundven@2515
   271
        CT_DoExecLog ALL make ${JOBSFLAGS}              \
bryanhundven@2515
   272
                         install_root=${CT_SYSROOT_DIR} \
bryanhundven@2515
   273
                         install-bootstrap-headers=yes  \
bryanhundven@2515
   274
                         "${extra_make_args[@]}"        \
bryanhundven@2515
   275
                         install-headers
bryanhundven@2515
   276
bryanhundven@2515
   277
        # For glibc, a few headers need to be manually installed
bryanhundven@2515
   278
        if [ "${CT_LIBC}" = "glibc" ]; then
bryanhundven@2515
   279
            # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
bryanhundven@2515
   280
            # so do them by hand.  We can tolerate an empty stubs.h for the moment.
bryanhundven@2515
   281
            # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
bryanhundven@2515
   282
            mkdir -p "${CT_HEADERS_DIR}/gnu"
bryanhundven@2515
   283
            CT_DoExecLog ALL touch "${CT_HEADERS_DIR}/gnu/stubs.h"
bryanhundven@2515
   284
            CT_DoExecLog ALL cp -v "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/include/features.h"  \
bryanhundven@2515
   285
                                   "${CT_HEADERS_DIR}/features.h"
bryanhundven@2515
   286
bryanhundven@2515
   287
            # Building the bootstrap gcc requires either setting inhibit_libc, or
bryanhundven@2515
   288
            # having a copy of stdio_lim.h... see
bryanhundven@2515
   289
            # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
bryanhundven@2515
   290
            CT_DoExecLog ALL cp -v bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
bryanhundven@2515
   291
bryanhundven@2515
   292
            # Following error building gcc-4.0.0's gcj:
bryanhundven@2515
   293
            #  error: bits/syscall.h: No such file or directory
bryanhundven@2515
   294
            # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
bryanhundven@2515
   295
            # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
bryanhundven@2515
   296
            case "${CT_ARCH}" in
bryanhundven@2515
   297
                arm)    ;;
bryanhundven@2515
   298
                *)  CT_DoExecLog ALL cp -v "misc/syscall-list.h"            \
bryanhundven@2515
   299
                                           "${CT_HEADERS_DIR}/bits/syscall.h"
bryanhundven@2515
   300
                    ;;
bryanhundven@2515
   301
            esac
bryanhundven@2515
   302
        fi
bryanhundven@2515
   303
bryanhundven@2515
   304
        if [ "${CT_THREADS}" = "nptl" ]; then
bryanhundven@2515
   305
            CT_DoLog EXTRA "Installing C library start files"
bryanhundven@2515
   306
bryanhundven@2515
   307
            # there are a few object files needed to link shared libraries,
bryanhundven@2515
   308
            # which we build and install by hand
bryanhundven@2515
   309
            CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
bryanhundven@2515
   310
            CT_DoExecLog ALL make ${JOBSFLAGS}  \
bryanhundven@2515
   311
                        "${extra_make_args[@]}" \
bryanhundven@2515
   312
                        csu/subdir_lib
bryanhundven@2515
   313
            CT_DoExecLog ALL cp csu/crt1.o csu/crti.o csu/crtn.o \
bryanhundven@2515
   314
                                "${CT_SYSROOT_DIR}/usr/lib"
bryanhundven@2515
   315
bryanhundven@2515
   316
            # Finally, 'libgcc_s.so' requires a 'libc.so' to link against.
bryanhundven@2515
   317
            # However, since we will never actually execute its code,
bryanhundven@2515
   318
            # it doesn't matter what it contains.  So, treating '/dev/null'
bryanhundven@2515
   319
            # as a C source file, we produce a dummy 'libc.so' in one step
bryanhundven@2515
   320
            CT_DoExecLog ALL "${cross_cc}" -nostdlib        \
bryanhundven@2515
   321
                                           -nostartfiles    \
bryanhundven@2515
   322
                                           -shared          \
bryanhundven@2515
   323
                                           -x c /dev/null   \
bryanhundven@2515
   324
                                           -o "${CT_SYSROOT_DIR}/usr/lib/libc.so"
bryanhundven@2515
   325
        fi # threads == nptl
bryanhundven@2515
   326
    else # libc_mode = final
bryanhundven@2515
   327
        CT_DoLog EXTRA "Building C library"
bryanhundven@2515
   328
        CT_DoExecLog ALL make ${JOBSFLAGS}                      \
bryanhundven@2515
   329
                              "${extra_make_args[@]}"           \
bryanhundven@2515
   330
                              all
bryanhundven@2515
   331
bryanhundven@2515
   332
        CT_DoLog EXTRA "Installing C library"
bryanhundven@2515
   333
        CT_DoExecLog ALL make ${JOBSFLAGS}                      \
bryanhundven@2515
   334
                              "${extra_make_args[@]}"           \
bryanhundven@2515
   335
                              install_root="${CT_SYSROOT_DIR}"  \
bryanhundven@2515
   336
                              install
benoit@2585
   337
michael@2765
   338
        if [ "${CT_BUILD_MANUALS}" = "y" ]; then
michael@2765
   339
            CT_DoLog EXTRA "Building and installing the C library manual"
michael@2765
   340
            # Omit JOBSFLAGS as GLIBC has problems building the
michael@2765
   341
            # manuals in parallel
michael@2765
   342
            CT_DoExecLog ALL make pdf html
michael@2765
   343
            # EGLIBC doesn't have a install-{pdf.html} and leaves the manuals
michael@2765
   344
            # in the source directory
michael@2765
   345
            CT_DoExecLog ALL mkdir -p ${CT_PREFIX_DIR}/share/doc
michael@2765
   346
            CT_DoExecLog ALL cp -av ${src_dir}/manual/*.pdf ${src_dir}/manual/libc \
michael@2765
   347
                ${CT_PREFIX_DIR}/share/doc
michael@2765
   348
        fi
michael@2765
   349
benoit@2585
   350
        if [ "${CT_LIBC_LOCALES}" = "y" ]; then
benoit@2585
   351
            do_libc_locales
benoit@2585
   352
        fi
bryanhundven@2515
   353
    fi
yann@850
   354
yann@850
   355
    CT_EndStep
yann@850
   356
}
yann@850
   357
yann@2270
   358
# This function finishes the C library install
yann@2270
   359
# This is a no-op
yann@850
   360
do_libc_finish() {
yann@850
   361
    :
yann@850
   362
}
yann@850
   363
yann@850
   364
# Build up the addons list, separated with $1
yann@850
   365
do_libc_add_ons_list() {
yann@850
   366
    local sep="$1"
yann@2274
   367
    local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}"         \
yann@2274
   368
                          |sed -r -e "s/[[:space:],]/${sep}/g;" \
yann@2274
   369
                        )"
yann@850
   370
    case "${CT_THREADS}" in
yann@850
   371
        none)   ;;
yann@850
   372
        *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
yann@850
   373
    esac
yann@850
   374
    [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
yann@2274
   375
    # Remove duplicate, leading and trailing separators
yann@2274
   376
    echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
yann@850
   377
}
yann@2273
   378
yann@2273
   379
# Compute up the minimum supported Linux kernel version
yann@2273
   380
do_libc_min_kernel_config() {
yann@2273
   381
    local min_kernel_config
yann@2273
   382
yann@2467
   383
    case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
yann@2273
   384
        *--enable-kernel*) ;;
yann@2273
   385
        *)  if [ "${CT_LIBC_GLIBC_KERNEL_VERSION_AS_HEADERS}" = "y" ]; then
yann@2273
   386
                # We can't rely on the kernel version from the configuration,
yann@2273
   387
                # because it might not be available if the user uses pre-installed
yann@2273
   388
                # headers. On the other hand, both method will have the kernel
yann@2279
   389
                # version installed in "usr/include/linux/version.h" in the sysroot.
yann@2273
   390
                # Parse that instead of having two code-paths.
yann@2273
   391
                version_code_file="${CT_SYSROOT_DIR}/usr/include/linux/version.h"
yann@2273
   392
                if [ ! -f "${version_code_file}" -o ! -r "${version_code_file}" ]; then
yann@2273
   393
                    CT_Abort "Linux version is unavailable in installed headers files"
yann@2273
   394
                fi
yann@2273
   395
                version_code="$( grep -E LINUX_VERSION_CODE "${version_code_file}"  \
yann@2273
   396
                                 |cut -d ' ' -f 3                                   \
yann@2273
   397
                               )"
yann@2273
   398
                version=$(((version_code>>16)&0xFF))
yann@2273
   399
                patchlevel=$(((version_code>>8)&0xFF))
yann@2273
   400
                sublevel=$((version_code&0xFF))
yann@2273
   401
                min_kernel_config="${version}.${patchlevel}.${sublevel}"
yann@2273
   402
            elif [ "${CT_LIBC_GLIBC_KERNEL_VERSION_CHOSEN}" = "y" ]; then
yann@2273
   403
                # Trim the fourth part of the linux version, keeping only the first three numbers
yann@2276
   404
                min_kernel_config="$( echo "${CT_LIBC_GLIBC_MIN_KERNEL_VERSION}"            \
yann@2276
   405
                                      |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \
yann@2273
   406
                                    )"
yann@2273
   407
            fi
yann@2273
   408
            echo "--enable-kernel=${min_kernel_config}"
yann@2273
   409
            ;;
yann@2273
   410
    esac
yann@2273
   411
}