mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 05:17:54 +00:00
1b822b4447
/trunk/patches/duma/2_5_14/200-separate_cpp.patch | 19 19 0 0 +++++++++++++++++ /trunk/patches/duma/2_5_14/100-cross-compile.patch | 32 32 0 0 ++++++++++++++++++++++++++++ /trunk/config/debug/duma.in | 5 5 0 0 ++++ 3 files changed, 56 insertions(+)
59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
# 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"
|
|
|
|
config DUMA_V_2_5_8
|
|
bool
|
|
prompt "2_5_8"
|
|
|
|
config DUMA_V_2_5_12
|
|
bool
|
|
prompt "2_5_12"
|
|
|
|
config DUMA_V_2_5_14
|
|
bool
|
|
prompt "2_5_14"
|
|
|
|
# CT_INSERT_VERSION_ABOVE
|
|
# Don't remove above line!
|
|
endchoice
|
|
|
|
config DUMA_VERSION
|
|
string
|
|
default "2_5_1" if DUMA_V_2_5_1
|
|
default "2_5_8" if DUMA_V_2_5_8
|
|
default "2_5_12" if DUMA_V_2_5_12
|
|
default "2_5_14" if DUMA_V_2_5_14
|
|
# CT_INSERT_VERSION_STRING_ABOVE
|
|
# Don't remove above line!
|
|
|
|
endif
|