config/debug/dmalloc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jul 27 16:35:37 2008 +0000 (2008-07-27)
changeset 740 d26d8cc7c460
parent 105 5a8d4f6a19c7
child 850 ef8549b58b6f
permissions -rw-r--r--
Fix building x86_64 on x86_64 (and hopefully all other *64 archs on the same *64):
- symlink all lib64/ dirs to the corresponding lib/ dir
Also, prevent gcc from installing some of its target libs outside of the sys-root, in the first place.
Thanks to Laurent DUFRECHOU for reporting the bug and testing the fix.

/trunk/scripts/build/cc_gcc.sh | 26 0 26 0 --------------------------
/trunk/scripts/crosstool.sh | 14 14 0 0 ++++++++++++++
2 files changed, 14 insertions(+), 26 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