mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-26 16:01:06 +00:00
97a20eed5c
Allow cross-gdb and gdbserver. This requires removal of an explicit check that disables gdbserver on android. However, the comment above that check refers to exec_elf.h, which has been removed since API level 19. It builds fine with current selection of the sample (21). Only build-tested, hope someone can give it a try and report back. We can fine tune the check for GDB but I'll leave it for now. Signed-off-by: Alexey Neyman <stilor@att.net>
39 lines
778 B
Plaintext
39 lines
778 B
Plaintext
# D.U.M.A. - Detect Unintended Memory Access - Memory checker
|
|
|
|
## depends on ! BARE_METAL
|
|
## depends on ! LIBC_bionic
|
|
|
|
## 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_SO
|
|
bool
|
|
prompt "Build a shared library"
|
|
depends on SHARED_LIBS
|
|
default y
|
|
|
|
config DUMA_CUSTOM_WRAPPER
|
|
bool
|
|
prompt "Install custom D.U.M.A wrapper"
|
|
default y
|
|
depends on DUMA_SO
|
|
|
|
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"
|
|
|
|
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
|