mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
41e8d132ce
Mark native gdb as being EXPERIMENTAL (it depends on termcap, which we don't have yet).
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
|