scripts/build/companion_libs/mpc.sh
author "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
Wed Dec 14 16:55:22 2011 +0100 (2011-12-14)
branch1.13
changeset 2848 1ff89596dab0
parent 2350 069c0df98b64
child 2927 ddaae597fd7c
permissions -rw-r--r--
libc/eglibc: fix localedef 2.14 build

The localedef of eglibc 2.14 requires NOT_IN_libc to be defined in order to
compile intl/l10nflist.c.

This is because localedef is built separately from eglibc and uses some parts of
eglibc that don't compile in standalone without this preprocessor definition.

This fixes the following error:

[ALL ] gcc -g -O2 -DNO_SYSCONF -DNO_UNCOMPRESS
-DLOCALE_PATH='"/usr/lib/locale:/usr/share/i18n"'
-DLOCALEDIR='"/usr/lib/locale"' -DLOCALE_ALIAS_PATH='"/usr/share/locale"'
-DCHARMAP_PATH='"/usr/share/i18n/charmaps"'
-DREPERTOIREMAP_PATH='"/usr/share/i18n/repertoiremaps"'
-DLOCSRCDIR='"/usr/share/i18n/locales"' -Iglibc/locale/programs -Iglibc/locale
-I/<snip>/.build/src/eglibc-localedef-2_14/include
-I/<snip>/.build/src/eglibc-localedef-2_14 -I.
-include /<snip>/.build/src/eglibc-localedef-2_14/include/always.h -Wall
-Wno-format -c -o locarchive.o glibc/locale/programs/locarchive.c
[ALL ] glibc/locale/programs/locarchive.c: In function 'enlarge_archive':
[ALL ] glibc/locale/programs/locarchive.c:303:21: warning: variable
'oldlocrectab' set but not used [-Wunused-but-set-variable]
[ALL ] In file included from glibc/locale/programs/locarchive.c:651:0:
[ALL ] glibc/locale/programs/../../intl/l10nflist.c: In function
'_nl_normalize_codeset':
[ERROR] glibc/locale/programs/../../intl/l10nflist.c:342:9: error:
'_nl_C_locobj_ptr' undeclared (first use in this function)
[ALL ] glibc/locale/programs/../../intl/l10nflist.c:342:9: note: each
undeclared identifier is reported only once for each function it appears in
[ALL ] glibc/locale/programs/locarchive.c: In function
'add_locales_to_archive':
[ALL ] glibc/locale/programs/locarchive.c:1450:7: warning: passing argument
1 of '__xpg_basename' discards 'const' qualifier from pointer target type
[enabled by default]
[ALL ] /usr/include/libgen.h:35:14: note: expected 'char *' but argument is
of type 'const char *'
[ERROR] make[1]: *** [locarchive.o] Error 1

Signed-off-by: "Benoît Thébaudeau" <benoit.thebaudeau@advansee.com>
(transplanted from 4cd9134739b594451794cf61a6e1b137422cdafd)
yann@1384
     1
# This file adds the functions to build the MPC library
yann@1384
     2
# Copyright 2009 Yann E. MORIN
yann@1384
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@1384
     4
yann@1384
     5
do_mpc_get() { :; }
yann@1384
     6
do_mpc_extract() { :; }
yann@1384
     7
do_mpc() { :; }
yann@1384
     8
yann@1384
     9
# Overide functions depending on configuration
yann@1808
    10
if [ "${CT_MPC}" = "y" ]; then
yann@1384
    11
yann@1384
    12
# Download MPC
yann@1384
    13
do_mpc_get() {
yann@1384
    14
    CT_GetFile "mpc-${CT_MPC_VERSION}" .tar.gz      \
yann@1384
    15
        http://www.multiprecision.org/mpc/download
yann@1384
    16
}
yann@1384
    17
yann@1384
    18
# Extract MPC
yann@1384
    19
do_mpc_extract() {
yann@1384
    20
    CT_Extract "mpc-${CT_MPC_VERSION}"
yann@1901
    21
    CT_Patch "mpc" "${CT_MPC_VERSION}"
yann@1384
    22
}
yann@1384
    23
yann@1384
    24
do_mpc() {
yann@1384
    25
    mkdir -p "${CT_BUILD_DIR}/build-mpc"
yann@1384
    26
    cd "${CT_BUILD_DIR}/build-mpc"
yann@1384
    27
yann@1384
    28
    CT_DoStep INFO "Installing MPC"
yann@1384
    29
yann@1384
    30
    CT_DoLog EXTRA "Configuring MPC"
yann@1892
    31
yann@2350
    32
    CT_DoExecLog CFG                                \
yann@1384
    33
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
yann@1384
    34
    "${CT_SRC_DIR}/mpc-${CT_MPC_VERSION}/configure" \
yann@1384
    35
        --build=${CT_BUILD}                         \
yann@1384
    36
        --host=${CT_HOST}                           \
yann@1893
    37
        --prefix="${CT_COMPLIBS_DIR}"               \
yann@1893
    38
        --with-gmp="${CT_COMPLIBS_DIR}"             \
yann@1893
    39
        --with-mpfr="${CT_COMPLIBS_DIR}"            \
yann@2381
    40
        --disable-shared                            \
yann@2381
    41
        --enable-static
yann@1384
    42
yann@1384
    43
    CT_DoLog EXTRA "Building MPC"
yann@2275
    44
    CT_DoExecLog ALL make ${JOBSFLAGS}
yann@1384
    45
yann@1890
    46
    if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
yann@1384
    47
        CT_DoLog EXTRA "Checking MPC"
yann@2275
    48
        CT_DoExecLog ALL make ${JOBSFLAGS} -s check
yann@1384
    49
    fi
yann@1384
    50
yann@1384
    51
    CT_DoLog EXTRA "Installing MPC"
yann@1384
    52
    CT_DoExecLog ALL make install
yann@1384
    53
yann@1384
    54
    CT_EndStep
yann@1384
    55
}
yann@1384
    56
yann@1808
    57
fi # CT_MPC