scripts/build/libc/glibc-eglibc.sh-common
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 22 22:36:20 2011 +0100 (2011-01-22)
changeset 2278 e86826b8621a
parent 2277 71803c9f6de0
child 2279 a559d9890c02
permissions -rw-r--r--
libc: remove now unneeded do_libc_headers

do_libc_headers is now a noop, and is no longer used, so remove that step.

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