config/debug/duma.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jun 24 16:24:09 2008 +0000 (2008-06-24)
changeset 611 eac4dc8da8a9
parent 430 5b7efc8dbf85
child 850 ef8549b58b6f
permissions -rw-r--r--
New patches from Ioannis E. VENETIS to allow building more up-to-date Alpha x-compilers.
Some patches are still missing, though.
See: http://sourceware.org/ml/libc-help/2008-06/msg00061.html

/trunk/patches/glibc/2.5.1/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5.1/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/2.5/270-glibc-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/glibc/2.5/280-glibc-alpha-sigsuspend.patch | 24 24 0 0 ++++++++++
/trunk/patches/glibc/linuxthreads-2.3.6/270-glibc-linuxthreads-alpha-cfi.patch | 25 25 0 0 ++++++++++
/trunk/patches/gcc/4.2.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.0/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.2/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.3.1/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
/trunk/patches/gcc/4.2.3/940-gcc-alpha-signal_h.patch | 17 17 0 0 +++++++
11 files changed, 225 insertions(+)
     1 # D.U.M.A. - Detect Unintended Memory Access - Memory checker
     2 
     3 menuconfig DUMA
     4     bool
     5     prompt "D.U.M.A."
     6     default n
     7     help
     8       D.U.M.A. - Detect Unintended Memory Access
     9       A memory bound checker, with additional features.
    10       Formerly known as Electric Fence.
    11 
    12 if DUMA
    13 
    14 config DUMA_A
    15     bool
    16     prompt "Build a static library"
    17     default y
    18 
    19 config DUMA_SO
    20     bool
    21     prompt "Build a shared library"
    22     default y if SHARED_LIBS
    23     default n if ! SHARED_LIBS
    24 
    25 choice
    26     bool
    27     prompt "D.U.M.A. version"
    28 
    29 config DUMA_V_2_5_1
    30     bool
    31     prompt "2_5_1"
    32 
    33 config DUMA_V_2_5_8
    34     bool
    35     prompt "2_5_8"
    36 
    37 config DUMA_V_2_5_12
    38     bool
    39     prompt "2_5_12"
    40 
    41 config DUMA_V_2_5_14
    42     bool
    43     prompt "2_5_14"
    44 
    45 # CT_INSERT_VERSION_ABOVE
    46 # Don't remove above line!
    47 endchoice
    48 
    49 config DUMA_VERSION
    50     string
    51     default "2_5_1" if DUMA_V_2_5_1
    52     default "2_5_8" if DUMA_V_2_5_8
    53     default "2_5_12" if DUMA_V_2_5_12
    54     default "2_5_14" if DUMA_V_2_5_14
    55 # CT_INSERT_VERSION_STRING_ABOVE
    56 # Don't remove above line!
    57 
    58 endif