2007-07-12 08:47:15 +00:00
|
|
|
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
|
|
|
|
|
|
|
|
menuconfig DUMA
|
|
|
|
bool
|
|
|
|
prompt "D.U.M.A."
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
D.U.M.A. - Detect Unintended Memory Access
|
|
|
|
A memory bound checker, with additional features.
|
|
|
|
Formerly known as Electric Fence.
|
|
|
|
|
|
|
|
if DUMA
|
|
|
|
|
|
|
|
config DUMA_A
|
|
|
|
bool
|
|
|
|
prompt "Build a static library"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DUMA_SO
|
|
|
|
bool
|
|
|
|
prompt "Build a shared library"
|
|
|
|
default y if SHARED_LIBS
|
|
|
|
default n if ! SHARED_LIBS
|
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "D.U.M.A. version"
|
|
|
|
|
|
|
|
config DUMA_V_2_5_1
|
|
|
|
bool
|
|
|
|
prompt "2_5_1"
|
|
|
|
|
2007-09-07 21:31:01 +00:00
|
|
|
config DUMA_V_2_5_8
|
2007-07-21 10:15:13 +00:00
|
|
|
bool
|
2007-09-07 21:31:01 +00:00
|
|
|
prompt "2_5_8"
|
2007-07-21 10:15:13 +00:00
|
|
|
|
2008-02-15 22:22:31 +00:00
|
|
|
config DUMA_V_2_5_12
|
|
|
|
bool
|
|
|
|
prompt "2_5_12"
|
|
|
|
|
2008-06-17 22:28:17 +00:00
|
|
|
config DUMA_V_2_5_14
|
|
|
|
bool
|
|
|
|
prompt "2_5_14"
|
|
|
|
|
2007-07-12 08:47:15 +00:00
|
|
|
# CT_INSERT_VERSION_ABOVE
|
|
|
|
# Don't remove above line!
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config DUMA_VERSION
|
|
|
|
string
|
|
|
|
default "2_5_1" if DUMA_V_2_5_1
|
2007-09-07 21:31:01 +00:00
|
|
|
default "2_5_8" if DUMA_V_2_5_8
|
2008-02-15 22:22:31 +00:00
|
|
|
default "2_5_12" if DUMA_V_2_5_12
|
2008-06-17 22:28:17 +00:00
|
|
|
default "2_5_14" if DUMA_V_2_5_14
|
2007-07-12 08:47:15 +00:00
|
|
|
# CT_INSERT_VERSION_STRING_ABOVE
|
|
|
|
# Don't remove above line!
|
|
|
|
|
|
|
|
endif
|