mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-05 04:24:12 +00:00
35 lines
519 B
Plaintext
35 lines
519 B
Plaintext
|
# dmalloc debug facility
|
||
|
|
||
|
menuconfig DMALLOC
|
||
|
bool
|
||
|
prompt "dmalloc"
|
||
|
default n
|
||
|
|
||
|
if DMALLOC
|
||
|
|
||
|
choice
|
||
|
bool
|
||
|
prompt "dmalloc version"
|
||
|
|
||
|
config DMALLOC_V_5_4_3
|
||
|
bool
|
||
|
prompt "5.4.3"
|
||
|
depends on OBSOLETE
|
||
|
|
||
|
config DMALLOC_V_5_5_2
|
||
|
bool
|
||
|
prompt "5.5.2"
|
||
|
|
||
|
# CT_INSERT_VERSION_ABOVE
|
||
|
# Don't remove above line!
|
||
|
endchoice
|
||
|
|
||
|
config DMALLOC_VERSION
|
||
|
string
|
||
|
default "5.4.3" if DMALLOC_V_5_4_3
|
||
|
default "5.5.2" if DMALLOC_V_5_5_2
|
||
|
# CT_INSERT_VERSION_STRING_ABOVE
|
||
|
# Don't remove above line!
|
||
|
|
||
|
endif
|