scripts/build/libc/glibc-eglibc.sh-common
author "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
Fri Jun 03 17:21:56 2011 +0200 (2011-06-03)
changeset 2503 b5541f296b92
parent 2496 cc9b84a83b34
child 2515 364b06df9e3a
permissions -rw-r--r--
kconfig: prepend CT-NG's version tag to PKGVERSION

"crosstool-NG-${CT_VERSION}" is currently the default for TOOLCHAIN_PKGVERSION,
and this options is passed as is to --with-pkgversion.

This patch prepends "crosstool-NG ${CT_VERSION}" to TOOLCHAIN_PKGVERSION before
passing it to --with-pkgversion.

Signed-off-by: "Benoît THÉBAUDEAU" <benoit.thebaudeau@advansee.com>
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
yann@2483
    32
            mv "${CT_LIBC}-${addon}-${CT_LIBC_VERSION}" "${addon}"
yann@2483
    33
        fi
yann@2483
    34
yann@2483
    35
        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
yann@2483
    50
}
yann@2483
    51
yann@2270
    52
# Build and install headers and start files
yann@850
    53
do_libc_start_files() {
yann@2271
    54
    local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
yann@2271
    55
yann@2277
    56
    CT_DoStep INFO "Installing C library headers & start files"
yann@850
    57
yann@850
    58
    mkdir -p "${CT_BUILD_DIR}/build-libc-startfiles"
yann@850
    59
    cd "${CT_BUILD_DIR}/build-libc-startfiles"
yann@850
    60
yann@850
    61
    CT_DoLog EXTRA "Configuring C library"
yann@850
    62
yann@2271
    63
    case "${CT_LIBC}" in
yann@2271
    64
        eglibc)
yann@2271
    65
            if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
yann@2271
    66
                CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
yann@2271
    67
            fi
yann@2271
    68
            ;;
yann@2271
    69
    esac
avrac@1569
    70
yann@850
    71
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@850
    72
    cross_cxx=$(CT_Which "${CT_TARGET}-g++")
yann@850
    73
    cross_ar=$(CT_Which "${CT_TARGET}-ar")
yann@850
    74
    cross_ranlib=$(CT_Which "${CT_TARGET}-ranlib")
yann@2271
    75
yann@850
    76
    CT_DoLog DEBUG "Using gcc for target: '${cross_cc}'"
yann@850
    77
    CT_DoLog DEBUG "Using g++ for target: '${cross_cxx}'"
yann@850
    78
    CT_DoLog DEBUG "Using ar for target: '${cross_ar}'"
yann@850
    79
    CT_DoLog DEBUG "Using ranlib for target: '${cross_ranlib}'"
yann@850
    80
yann@2289
    81
    touch config.cache
yann@2289
    82
    if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
yann@2289
    83
        echo "libc_cv_forced_unwind=yes" >>config.cache
yann@2289
    84
        echo "libc_cv_c_cleanup=yes" >>config.cache
yann@2289
    85
    fi
yann@2289
    86
yann@2289
    87
    # Pre-seed the configparms file with values from the config option
yann@2289
    88
    printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
yann@2289
    89
yann@2353
    90
    CT_DoExecLog CFG                                    \
yann@1123
    91
    BUILD_CC="${CT_BUILD}-gcc"                          \
yann@1123
    92
    CC=${cross_cc}                                      \
yann@1123
    93
    CXX=${cross_cxx}                                    \
yann@1123
    94
    AR=${cross_ar}                                      \
yann@1123
    95
    RANLIB=${cross_ranlib}                              \
yann@2271
    96
    "${src_dir}/configure"                              \
yann@1123
    97
        --prefix=/usr                                   \
yann@1123
    98
        --with-headers="${CT_HEADERS_DIR}"              \
yann@1123
    99
        --build="${CT_BUILD}"                           \
yann@1123
   100
        --host="${CT_TARGET}"                           \
yann@2289
   101
        --cache-file="$(pwd)/config.cache"              \
yann@1123
   102
        --disable-profile                               \
yann@1123
   103
        --without-gd                                    \
yann@1123
   104
        --without-cvs                                   \
yann@850
   105
        --enable-add-ons
yann@850
   106
yann@850
   107
    CT_DoLog EXTRA "Installing C library headers"
yann@850
   108
yann@850
   109
    # use the 'install-headers' makefile target to install the
yann@850
   110
    # headers
yann@2277
   111
    CT_DoExecLog ALL make ${JOBSFLAGS}              \
yann@2277
   112
                     install_root=${CT_SYSROOT_DIR} \
yann@2277
   113
                     install-bootstrap-headers=yes  \
yann@2277
   114
                     install-headers
yann@850
   115
yann@2272
   116
    # For glibc, a few headers need to be manually installed
yann@2272
   117
    if [ "${CT_LIBC}" = "glibc" ]; then
yann@2272
   118
        # Two headers -- stubs.h and features.h -- aren't installed by install-headers,
yann@2272
   119
        # so do them by hand.  We can tolerate an empty stubs.h for the moment.
yann@2272
   120
        # See e.g. http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html
yann@2272
   121
        mkdir -p "${CT_HEADERS_DIR}/gnu"
yann@2272
   122
        CT_DoExecLog ALL touch "${CT_HEADERS_DIR}/gnu/stubs.h"
yann@2272
   123
        CT_DoExecLog ALL cp -v "${CT_SRC_DIR}/glibc-${CT_LIBC_VERSION}/include/features.h"  \
yann@2272
   124
                               "${CT_HEADERS_DIR}/features.h"
yann@2272
   125
yann@2272
   126
        # Building the bootstrap gcc requires either setting inhibit_libc, or
yann@2272
   127
        # having a copy of stdio_lim.h... see
yann@2272
   128
        # http://sources.redhat.com/ml/libc-alpha/2003-11/msg00045.html
yann@2272
   129
        CT_DoExecLog ALL cp -v bits/stdio_lim.h "${CT_HEADERS_DIR}/bits/stdio_lim.h"
yann@2272
   130
yann@2272
   131
        # Following error building gcc-4.0.0's gcj:
yann@2272
   132
        #  error: bits/syscall.h: No such file or directory
yann@2272
   133
        # solved by following copy; see http://sourceware.org/ml/crossgcc/2005-05/msg00168.html
yann@2272
   134
        # but it breaks arm, see http://sourceware.org/ml/crossgcc/2006-01/msg00091.html
yann@2314
   135
        case "${CT_ARCH}" in
yann@2314
   136
            arm)    ;;
yann@2314
   137
            *)  CT_DoExecLog ALL cp -v "misc/syscall-list.h"            \
yann@2314
   138
                                       "${CT_HEADERS_DIR}/bits/syscall.h"
yann@2314
   139
                ;;
yann@2314
   140
        esac
yann@2272
   141
    fi
yann@2272
   142
yann@2313
   143
    if [ "${CT_THREADS}" = "nptl" ]; then
yann@2313
   144
        CT_DoLog EXTRA "Installing C library start files"
yann@850
   145
yann@2313
   146
        # there are a few object files needed to link shared libraries,
yann@2313
   147
        # which we build and install by hand
yann@2313
   148
        CT_DoExecLog ALL mkdir -p "${CT_SYSROOT_DIR}/usr/lib"
yann@2313
   149
        CT_DoExecLog ALL make ${JOBSFLAGS} csu/subdir_lib
yann@2313
   150
        CT_DoExecLog ALL cp csu/crt1.o csu/crti.o csu/crtn.o \
yann@2313
   151
                            "${CT_SYSROOT_DIR}/usr/lib"
yann@850
   152
yann@2313
   153
        # Finally, 'libgcc_s.so' requires a 'libc.so' to link against.
yann@2313
   154
        # However, since we will never actually execute its code,
yann@2313
   155
        # it doesn't matter what it contains.  So, treating '/dev/null'
yann@2313
   156
        # as a C source file, we produce a dummy 'libc.so' in one step
yann@2313
   157
        CT_DoExecLog ALL "${cross_cc}" -nostdlib        \
yann@2313
   158
                                       -nostartfiles    \
yann@2313
   159
                                       -shared          \
yann@2313
   160
                                       -x c /dev/null   \
yann@2313
   161
                                       -o "${CT_SYSROOT_DIR}/usr/lib/libc.so"
yann@2313
   162
    fi # threads == nptl
yann@850
   163
yann@850
   164
    CT_EndStep
yann@850
   165
}
yann@850
   166
yann@2270
   167
# This function builds and install the full C library
yann@850
   168
do_libc() {
yann@2271
   169
    local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}"
yann@2276
   170
    local extra_cc_args
yann@1478
   171
    local -a extra_config
yann@2271
   172
    local -a extra_make_args
yann@2312
   173
    local glibc_cflags
yann@1478
   174
yann@850
   175
    CT_DoStep INFO "Installing C library"
yann@850
   176
yann@850
   177
    mkdir -p "${CT_BUILD_DIR}/build-libc"
yann@850
   178
    cd "${CT_BUILD_DIR}/build-libc"
yann@850
   179
yann@850
   180
    CT_DoLog EXTRA "Configuring C library"
yann@850
   181
yann@2271
   182
    case "${CT_LIBC}" in
yann@2271
   183
        eglibc)
yann@2271
   184
            if [ "${CT_EGLIBC_CUSTOM_CONFIG}" = "y" ]; then
yann@2271
   185
                CT_DoExecLog ALL cp "${CT_CONFIG_DIR}/eglibc.config" option-groups.config
yann@2271
   186
            fi
yann@2271
   187
            if [ "${CT_EGLIBC_OPT_SIZE}" = "y" ]; then
yann@2271
   188
                OPTIMIZE=-Os
yann@2271
   189
            else
yann@2271
   190
                OPTIMIZE=-O2
yann@2271
   191
            fi
yann@2271
   192
            ;;
yann@2276
   193
        glibc)
yann@2276
   194
            # glibc can't be built without -O2 (reference needed!)
yann@2276
   195
            OPTIMIZE=-O2
yann@2276
   196
            # Also, if those two are missing, iconv build breaks
yann@2276
   197
            extra_config+=( --disable-debug --disable-sanity-checks )
yann@2276
   198
            ;;
yann@2271
   199
    esac
richard@1796
   200
yann@850
   201
    # Add some default glibc config options if not given by user.
yann@850
   202
    # We don't need to be conditional on wether the user did set different
yann@2467
   203
    # values, as they CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY is passed after
yann@2467
   204
    # extra_config
yann@850
   205
yann@2273
   206
    extra_config+=("$(do_libc_min_kernel_config)")
yann@850
   207
yann@850
   208
    case "${CT_THREADS}" in
yann@1478
   209
        nptl)           extra_config+=("--with-__thread" "--with-tls");;
yann@1478
   210
        linuxthreads)   extra_config+=("--with-__thread" "--without-tls" "--without-nptl");;
yann@1478
   211
        none)           extra_config+=("--without-__thread" "--without-nptl")
yann@2467
   212
                        case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
yann@850
   213
                            *-tls*) ;;
yann@1478
   214
                            *) extra_config+=("--without-tls");;
yann@850
   215
                        esac
yann@850
   216
                        ;;
yann@850
   217
    esac
yann@850
   218
yann@850
   219
    case "${CT_SHARED_LIBS}" in
yann@1478
   220
        y) extra_config+=("--enable-shared");;
yann@1478
   221
        *) extra_config+=("--disable-shared");;
yann@850
   222
    esac
yann@850
   223
yann@850
   224
    case "${CT_ARCH_FLOAT_HW},${CT_ARCH_FLOAT_SW}" in
yann@1478
   225
        y,) extra_config+=("--with-fp");;
yann@1478
   226
        ,y) extra_config+=("--without-fp");;
yann@850
   227
    esac
yann@850
   228
bryanhundven@2180
   229
    if [ "${CT_LIBC_DISABLE_VERSIONING}" = "y" ]; then
bryanhundven@2180
   230
        extra_config+=("--disable-versioning")
bryanhundven@2180
   231
    fi
bryanhundven@2180
   232
bryanhundven@2181
   233
    if [ "${CT_LIBC_OLDEST_ABI}" != "" ]; then
bryanhundven@2181
   234
        extra_config+=("--enable-oldest-abi=${CT_LIBC_OLDEST_ABI}")
bryanhundven@2181
   235
    fi
bryanhundven@2181
   236
yann@850
   237
    case "$(do_libc_add_ons_list ,)" in
yann@850
   238
        "") ;;
yann@1478
   239
        *)  extra_config+=("--enable-add-ons=$(do_libc_add_ons_list ,)");;
yann@850
   240
    esac
yann@850
   241
benoit@2489
   242
    if [ "${CT_LIBC_EGLIBC_HAS_PKGVERSION_BUGURL}" = "y" ]; then
benoit@2503
   243
        extra_config+=("--with-pkgversion=${CT_PKGVERSION}")
benoit@2503
   244
        [ -n "${CT_TOOLCHAIN_BUGURL}" ] && extra_config+=("--with-bugurl=${CT_TOOLCHAIN_BUGURL}")
benoit@2489
   245
    fi
benoit@2489
   246
yann@850
   247
    extra_cc_args="${extra_cc_args} ${CT_ARCH_ENDIAN_OPT}"
yann@850
   248
yann@2289
   249
    touch config.cache
yann@2289
   250
    if [ "${CT_LIBC_GLIBC_FORCE_UNWIND}" = "y" ]; then
yann@2289
   251
        echo "libc_cv_forced_unwind=yes" >>config.cache
yann@2289
   252
        echo "libc_cv_c_cleanup=yes" >>config.cache
yann@2289
   253
    fi
yann@2289
   254
yann@2276
   255
    # Pre-seed the configparms file with values from the config option
yann@2276
   256
    printf "${CT_LIBC_GLIBC_CONFIGPARMS}\n" > configparms
yann@2276
   257
benoit@2489
   258
    cross_cc=$(CT_Which "${CT_TARGET}-gcc")
yann@850
   259
yann@850
   260
    CT_DoLog DEBUG "Using gcc for target:     '${cross_cc}'"
yann@850
   261
    CT_DoLog DEBUG "Configuring with addons : '$(do_libc_add_ons_list ,)'"
yann@1478
   262
    CT_DoLog DEBUG "Extra config args passed: '${extra_config[*]}'"
yann@850
   263
    CT_DoLog DEBUG "Extra CC args passed    : '${extra_cc_args}'"
yann@850
   264
yann@2312
   265
    glibc_cflags="${CT_TARGET_CFLAGS} ${CT_LIBC_GLIBC_EXTRA_CFLAGS} ${OPTIMIZE}"
yann@2312
   266
    case "${CT_LIBC_ENABLE_FORTIFIED_BUILD}" in
yann@2312
   267
        y)  ;;
yann@2312
   268
        *)  glibc_cflags+=" -U_FORTIFY_SOURCE";;
yann@2312
   269
    esac
yann@2312
   270
bryanhundven@2229
   271
    # ./configure is mislead by our tools override wrapper for bash
bryanhundven@2229
   272
    # so just tell it where the real bash is _on_the_target_!
bryanhundven@2229
   273
    # Notes:
bryanhundven@2229
   274
    # - ${ac_cv_path_BASH_SHELL} is only used to set BASH_SHELL
bryanhundven@2229
   275
    # - ${BASH_SHELL}            is only used to set BASH
bryanhundven@2229
   276
    # - ${BASH}                  is only used to set the shebang
bryanhundven@2229
   277
    #                            in two scripts to run on the target
bryanhundven@2229
   278
    # So we can safely bypass bash detection at compile time.
bryanhundven@2229
   279
    # Should this change in a future eglibc release, we'd better
bryanhundven@2229
   280
    # directly mangle the generated scripts _after_ they get built,
bryanhundven@2229
   281
    # or even after they get installed... eglibc is such a sucker...
yann@2289
   282
    echo "ac_cv_path_BASH_SHELL=/bin/bash" >>config.cache
bryanhundven@2229
   283
yann@2276
   284
    # Configure with --prefix the way we want it on the target...
yann@2276
   285
    # There are a whole lot of settings here.  You'll probably want
yann@2467
   286
    # to read up on what they all mean, and customize a bit, possibly by setting GLIBC_EXTRA_CONFIG_ARRAY
yann@2276
   287
    # Compare these options with the ones used when installing the glibc headers above - they're different.
yann@2276
   288
    # Adding "--without-gd" option to avoid error "memusagestat.c:36:16: gd.h: No such file or directory"
yann@2276
   289
    # See also http://sources.redhat.com/ml/libc-alpha/2000-07/msg00024.html.
yann@2276
   290
    # Set BUILD_CC, or we won't be able to build datafiles
yann@2276
   291
yann@2353
   292
    CT_DoExecLog CFG                                                \
yann@1041
   293
    BUILD_CC="${CT_BUILD}-gcc"                                      \
yann@2312
   294
    CFLAGS="${glibc_cflags}"                                        \
yann@850
   295
    CC="${CT_TARGET}-gcc ${CT_LIBC_EXTRA_CC_ARGS} ${extra_cc_args}" \
yann@850
   296
    AR=${CT_TARGET}-ar                                              \
yann@850
   297
    RANLIB=${CT_TARGET}-ranlib                                      \
yann@2271
   298
    "${src_dir}/configure"                                          \
yann@850
   299
        --prefix=/usr                                               \
yann@1041
   300
        --build=${CT_BUILD}                                         \
yann@850
   301
        --host=${CT_TARGET}                                         \
yann@2289
   302
        --cache-file="$(pwd)/config.cache"                          \
yann@2276
   303
        --without-cvs                                               \
yann@850
   304
        --disable-profile                                           \
yann@850
   305
        --without-gd                                                \
yann@2276
   306
        --with-headers="${CT_HEADERS_DIR}"                          \
yann@1478
   307
        "${extra_config[@]}"                                        \
yann@2467
   308
        "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[@]}"
benoit@2489
   309
yann@2276
   310
    # build hacks
yann@2276
   311
    case "${CT_ARCH},${CT_ARCH_CPU}" in
yann@2276
   312
        powerpc,8??)
yann@2276
   313
            # http://sourceware.org/ml/crossgcc/2008-10/msg00068.html
yann@2276
   314
            CT_DoLog DEBUG "Activating support for memset on broken ppc-8xx (CPU15 erratum)"
yann@2276
   315
            extra_make_args+=( ASFLAGS="-DBROKEN_PPC_8xx_CPU15" )
yann@2271
   316
            ;;
yann@1328
   317
    esac
yann@1328
   318
yann@2276
   319
    CT_DoLog EXTRA "Building C library"
yann@2277
   320
    CT_DoExecLog ALL make ${JOBSFLAGS}                      \
yann@2276
   321
                          "${extra_make_args[@]}"           \
yann@2276
   322
                          all
yann@850
   323
yann@850
   324
    CT_DoLog EXTRA "Installing C library"
yann@2277
   325
    CT_DoExecLog ALL make ${JOBSFLAGS}                      \
yann@2276
   326
                          "${extra_make_args[@]}"           \
yann@2276
   327
                          install_root="${CT_SYSROOT_DIR}"  \
yann@2276
   328
                          install
yann@850
   329
yann@850
   330
    CT_EndStep
yann@850
   331
}
yann@850
   332
yann@2270
   333
# This function finishes the C library install
yann@2270
   334
# This is a no-op
yann@850
   335
do_libc_finish() {
yann@850
   336
    :
yann@850
   337
}
yann@850
   338
yann@850
   339
# Build up the addons list, separated with $1
yann@850
   340
do_libc_add_ons_list() {
yann@850
   341
    local sep="$1"
yann@2274
   342
    local addons_list="$( echo "${CT_LIBC_ADDONS_LIST}"         \
yann@2274
   343
                          |sed -r -e "s/[[:space:],]/${sep}/g;" \
yann@2274
   344
                        )"
yann@850
   345
    case "${CT_THREADS}" in
yann@850
   346
        none)   ;;
yann@850
   347
        *)      addons_list="${addons_list}${sep}${CT_THREADS}";;
yann@850
   348
    esac
yann@850
   349
    [ "${CT_LIBC_GLIBC_USE_PORTS}" = "y" ] && addons_list="${addons_list}${sep}ports"
yann@2274
   350
    # Remove duplicate, leading and trailing separators
yann@2274
   351
    echo "${addons_list}" |sed -r -e "s/${sep}+/${sep}/g; s/^${sep}//; s/${sep}\$//;"
yann@850
   352
}
yann@2273
   353
yann@2273
   354
# Compute up the minimum supported Linux kernel version
yann@2273
   355
do_libc_min_kernel_config() {
yann@2273
   356
    local min_kernel_config
yann@2273
   357
yann@2467
   358
    case "${CT_LIBC_GLIBC_EXTRA_CONFIG_ARRAY[*]}" in
yann@2273
   359
        *--enable-kernel*) ;;
yann@2273
   360
        *)  if [ "${CT_LIBC_GLIBC_KERNEL_VERSION_AS_HEADERS}" = "y" ]; then
yann@2273
   361
                # We can't rely on the kernel version from the configuration,
yann@2273
   362
                # because it might not be available if the user uses pre-installed
yann@2273
   363
                # headers. On the other hand, both method will have the kernel
yann@2279
   364
                # version installed in "usr/include/linux/version.h" in the sysroot.
yann@2273
   365
                # Parse that instead of having two code-paths.
yann@2273
   366
                version_code_file="${CT_SYSROOT_DIR}/usr/include/linux/version.h"
yann@2273
   367
                if [ ! -f "${version_code_file}" -o ! -r "${version_code_file}" ]; then
yann@2273
   368
                    CT_Abort "Linux version is unavailable in installed headers files"
yann@2273
   369
                fi
yann@2273
   370
                version_code="$( grep -E LINUX_VERSION_CODE "${version_code_file}"  \
yann@2273
   371
                                 |cut -d ' ' -f 3                                   \
yann@2273
   372
                               )"
yann@2273
   373
                version=$(((version_code>>16)&0xFF))
yann@2273
   374
                patchlevel=$(((version_code>>8)&0xFF))
yann@2273
   375
                sublevel=$((version_code&0xFF))
yann@2273
   376
                min_kernel_config="${version}.${patchlevel}.${sublevel}"
yann@2273
   377
            elif [ "${CT_LIBC_GLIBC_KERNEL_VERSION_CHOSEN}" = "y" ]; then
yann@2273
   378
                # Trim the fourth part of the linux version, keeping only the first three numbers
yann@2276
   379
                min_kernel_config="$( echo "${CT_LIBC_GLIBC_MIN_KERNEL_VERSION}"            \
yann@2276
   380
                                      |sed -r -e 's/^([^.]+\.[^.]+\.[^.]+)(|\.[^.]+)$/\1/;' \
yann@2273
   381
                                    )"
yann@2273
   382
            fi
yann@2273
   383
            echo "--enable-kernel=${min_kernel_config}"
yann@2273
   384
            ;;
yann@2273
   385
    esac
yann@2273
   386
}