config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Sep 23 14:48:10 2008 +0000 (2008-09-23)
changeset 872 fd4bf138f08f
parent 330 447b203edc2e
child 916 68af6b83ff7e
permissions -rw-r--r--
Bart De VOS pointed out that removing absolute paths from the libc linker scripts is plainly wrong.
It dates from dawn ages of the original crosstool code, and is not well explained. At that time, binutils might not understand the sysroot stuff, and it was necessary to remove absolute paths in that case.

/trunk/scripts/build/libc/glibc.sh | 14 2 12 0 ++------------
1 file changed, 2 insertions(+), 12 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@850
     7
    depends on ! BARE_METAL
yann@103
     8
yann@103
     9
if DMALLOC
yann@103
    10
yann@103
    11
choice
yann@103
    12
    bool
yann@103
    13
    prompt "dmalloc version"
yann@103
    14
yann@103
    15
config DMALLOC_V_5_4_3
yann@103
    16
    bool
yann@330
    17
    prompt "5.4.3 (OBSOLETE)"
yann@103
    18
    depends on OBSOLETE
yann@103
    19
yann@103
    20
config DMALLOC_V_5_5_2
yann@103
    21
    bool
yann@103
    22
    prompt "5.5.2"
yann@103
    23
yann@103
    24
# CT_INSERT_VERSION_ABOVE
yann@103
    25
# Don't remove above line!
yann@103
    26
endchoice
yann@103
    27
yann@103
    28
config DMALLOC_VERSION
yann@103
    29
    string
yann@103
    30
    default "5.4.3" if DMALLOC_V_5_4_3
yann@103
    31
    default "5.5.2" if DMALLOC_V_5_5_2
yann@103
    32
# CT_INSERT_VERSION_STRING_ABOVE
yann@103
    33
# Don't remove above line!
yann@103
    34
yann@103
    35
endif