config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jul 31 09:08:33 2008 +0000 (2008-07-31)
changeset 752 b037a5643e04
parent 105 5a8d4f6a19c7
child 850 ef8549b58b6f
permissions -rw-r--r--
Have the glibc build use the cross-objdump, rather than the host one.
On some distros (eg. Fedora), the native objdump can not interpret objects not for the native system, and thus fail.
This commit adds a new patch against glibc-2.7 that introduces OBJDUMP_FOR_HOST, wich, if set, overides the detected objdump.

Note: bizarely enough, glibc already has code to detect the cross-objdump, but that does not work for an unknown reason... :-(

/trunk/patches/glibc/2.7/220-objdump_for_host.patch | 13 13 0 0 +++++++++
/trunk/scripts/build/libc_glibc.sh | 37 21 16 0 +++++++++++++++------------
2 files changed, 34 insertions(+), 16 deletions(-)
yann@103
     1
# dmalloc debug facility
yann@103
     2
yann@103
     3
menuconfig DMALLOC
yann@103
     4
    bool
yann@103
     5
    prompt "dmalloc"
yann@103
     6
    default n
yann@103
     7
yann@103
     8
if DMALLOC
yann@103
     9
yann@103
    10
choice
yann@103
    11
    bool
yann@103
    12
    prompt "dmalloc version"
yann@103
    13
yann@103
    14
config DMALLOC_V_5_4_3
yann@103
    15
    bool
yann@330
    16
    prompt "5.4.3 (OBSOLETE)"
yann@103
    17
    depends on OBSOLETE
yann@103
    18
yann@103
    19
config DMALLOC_V_5_5_2
yann@103
    20
    bool
yann@103
    21
    prompt "5.5.2"
yann@103
    22
yann@103
    23
# CT_INSERT_VERSION_ABOVE
yann@103
    24
# Don't remove above line!
yann@103
    25
endchoice
yann@103
    26
yann@103
    27
config DMALLOC_VERSION
yann@103
    28
    string
yann@103
    29
    default "5.4.3" if DMALLOC_V_5_4_3
yann@103
    30
    default "5.5.2" if DMALLOC_V_5_5_2
yann@103
    31
# CT_INSERT_VERSION_STRING_ABOVE
yann@103
    32
# Don't remove above line!
yann@103
    33
yann@103
    34
endif