mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-02-23 01:52:42 +00:00
The latest kconfig stuff is more stringent when it comes to validating the dependency of the symbols. It is no longer possible to have a symbol depend on itself (such as our construct for arch/cc/libc/... was doing). Fix our generated-file infrastructure to avoid these situations when the new kconfig stuff will be merged (in a following changeset). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
|
|
|
|
## depends on ! BACKEND
|
|
|
|
## help D.U.M.A. - Detect Unintended Memory Access
|
|
## help A memory bound checker, with additional features.
|
|
## help Formerly known as Electric Fence.
|
|
|
|
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"
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
|
|
config DUMA_V_2_5_15
|
|
bool
|
|
prompt "2_5_15"
|
|
|
|
config DUMA_V_2_5_14
|
|
bool
|
|
prompt "2_5_14 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
config DUMA_V_2_5_12
|
|
bool
|
|
prompt "2_5_12 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
config DUMA_V_2_5_8
|
|
bool
|
|
prompt "2_5_8 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
config DUMA_V_2_5_1
|
|
bool
|
|
prompt "2_5_1 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
endchoice
|
|
|
|
config DUMA_VERSION
|
|
string
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "2_5_15" if DUMA_V_2_5_15
|
|
default "2_5_14" if DUMA_V_2_5_14
|
|
default "2_5_12" if DUMA_V_2_5_12
|
|
default "2_5_8" if DUMA_V_2_5_8
|
|
default "2_5_1" if DUMA_V_2_5_1
|