scripts/build/debug/100-dmalloc.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 2154 250cdcc86441
child 3200 0fc56e62cecf
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@479
     1
# Build script for the dmalloc debug library facility
yann@479
     2
yann@479
     3
do_debug_dmalloc_get() {
yann@479
     4
    CT_GetFile "dmalloc-${CT_DMALLOC_VERSION}" http://dmalloc.com/releases/
yann@479
     5
}
yann@479
     6
yann@479
     7
do_debug_dmalloc_extract() {
yann@1126
     8
    CT_Extract "dmalloc-${CT_DMALLOC_VERSION}"
yann@1901
     9
    CT_Patch "dmalloc" "${CT_DMALLOC_VERSION}"
yann@479
    10
}
yann@479
    11
yann@479
    12
do_debug_dmalloc_build() {
yann@1480
    13
    local -a extra_config
yann@1480
    14
yann@479
    15
    CT_DoStep INFO "Installing dmalloc"
yann@479
    16
    CT_DoLog EXTRA "Configuring dmalloc"
yann@479
    17
yann@479
    18
    mkdir -p "${CT_BUILD_DIR}/build-dmalloc"
yann@479
    19
    cd "${CT_BUILD_DIR}/build-dmalloc"
yann@479
    20
yann@479
    21
    case "${CT_CC_LANG_CXX}" in
yann@1480
    22
        y)  extra_config+=("--enable-cxx");;
yann@1480
    23
        *)  extra_config+=("--disable-cxx");;
yann@479
    24
    esac
yann@1587
    25
    case "${CT_THREADS}" in
yann@1587
    26
        none)   extra_config+=("--disable-threads");;
yann@1587
    27
        *)      extra_config+=("--enable-threads");;
yann@479
    28
    esac
yann@479
    29
    case "${CT_SHARED_LIBS}" in
yann@1480
    30
        y)  extra_config+=("--enable-shlib");;
yann@1480
    31
        *)  extra_config+=("--disable-shlib");;
yann@479
    32
    esac
yann@479
    33
yann@1480
    34
    CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
yann@479
    35
yann@2343
    36
    CT_DoExecLog CFG                                            \
yann@479
    37
    LD="${CT_TARGET}-ld"                                        \
yann@479
    38
    AR="${CT_TARGET}-ar"                                        \
yann@1074
    39
    CFLAGS=-fPIC                                                \
yann@479
    40
    "${CT_SRC_DIR}/dmalloc-${CT_DMALLOC_VERSION}/configure"     \
yann@479
    41
        --prefix=/usr                                           \
yann@479
    42
        --build="${CT_BUILD}"                                   \
yann@479
    43
        --host="${CT_TARGET}"                                   \
yann@1480
    44
        "${extra_config[@]}"
yann@479
    45
yann@479
    46
    CT_DoLog EXTRA "Building dmalloc"
yann@857
    47
    CT_DoExecLog ALL make
yann@479
    48
yann@479
    49
    CT_DoLog EXTRA "Installing dmalloc"
yann@669
    50
    CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" installincs installlib
yann@1219
    51
    CT_DoExecLog ALL make DESTDIR="${CT_DEBUGROOT_DIR}" installutil
yann@479
    52
yann@479
    53
    CT_EndStep
yann@479
    54
}