config/debug/duma.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 24 21:44:21 2009 +0000 (2009-05-24)
branchgcc-4.4
changeset 1374 f7f01af63a02
parent 850 ef8549b58b6f
child 1436 3cfa075e88b3
permissions -rw-r--r--
/trunk:
- TODO: add MPC as a gcc-4.4 pre-requisite

-------- diffstat follows --------
/devel/gcc-4.4/TODO | 1 1 0 0 +
1 file changed, 1 insertion(+)
     1 # D.U.M.A. - Detect Unintended Memory Access - Memory checker
     2 
     3 config DEBUG_duma
     4     help
     5       D.U.M.A. - Detect Unintended Memory Access
     6       A memory bound checker, with additional features.
     7       Formerly known as Electric Fence.
     8 
     9 config DUMA_A
    10     bool
    11     prompt "Build a static library"
    12     default y
    13 
    14 config DUMA_SO
    15     bool
    16     prompt "Build a shared library"
    17     default y if SHARED_LIBS
    18     default n if ! SHARED_LIBS
    19 
    20 choice
    21     bool
    22     prompt "D.U.M.A. version"
    23 
    24 config DUMA_V_2_5_1
    25     bool
    26     prompt "2_5_1"
    27 
    28 config DUMA_V_2_5_8
    29     bool
    30     prompt "2_5_8"
    31 
    32 config DUMA_V_2_5_12
    33     bool
    34     prompt "2_5_12"
    35 
    36 config DUMA_V_2_5_14
    37     bool
    38     prompt "2_5_14"
    39 
    40 # CT_INSERT_VERSION_ABOVE
    41 # Don't remove above line!
    42 endchoice
    43 
    44 config DUMA_VERSION
    45     string
    46     default "2_5_1" if DUMA_V_2_5_1
    47     default "2_5_8" if DUMA_V_2_5_8
    48     default "2_5_12" if DUMA_V_2_5_12
    49     default "2_5_14" if DUMA_V_2_5_14
    50 # CT_INSERT_VERSION_STRING_ABOVE
    51 # Don't remove above line!