config/debug/duma.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu Jul 12 13:22:26 2007 +0000 (2007-07-12)
changeset 237 131ee309e740
child 238 6de03d0069f1
permissions -rw-r--r--
Use "$CT_CC}" instead of "gcc" when calling target compilers.
     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     depends on EXPERIMENTAL
     8     help
     9       D.U.M.A. - Detect Unintended Memory Access
    10       A memory bound checker, with additional features.
    11       Formerly known as Electric Fence.
    12 
    13 if DUMA
    14 
    15 config DUMA_A
    16     bool
    17     prompt "Build a static library"
    18     default y
    19 
    20 config DUMA_SO
    21     bool
    22     prompt "Build a shared library"
    23     default y if SHARED_LIBS
    24     default n if ! SHARED_LIBS
    25 
    26 choice
    27     bool
    28     prompt "D.U.M.A. version"
    29 
    30 config DUMA_V_2_5_1
    31     bool
    32     prompt "2_5_1"
    33 
    34 # CT_INSERT_VERSION_ABOVE
    35 # Don't remove above line!
    36 endchoice
    37 
    38 config DUMA_VERSION
    39     string
    40     default "2_5_1" if DUMA_V_2_5_1
    41 # CT_INSERT_VERSION_STRING_ABOVE
    42 # Don't remove above line!
    43 
    44 endif