1 config BR2_PACKAGE_DUMA
3 depends on BR2_INSTALL_LIBSTDCPP
4 depends on BR2_TOOLCHAIN_HAS_THREADS
5 # By design, duma uses page mapping to isolate
6 # allocations. Non-MMU platforms cannot perform such
9 # duma works using LD_PRELOAD, so it always needs to build a
11 depends on !BR2_STATIC_LIBS
13 D.U.M.A. - Detect Unintended Memory Access. A fork of the
14 Electric Fence library. Detects buffer overflow and
15 underflow, and also memory leaks.
17 http://duma.sourceforge.net
21 config BR2_PACKAGE_DUMA_NO_LEAKDETECTION
22 bool "disable memory leak detection"
24 endif # BR2_PACKAGE_DUMA
26 comment "duma needs a toolchain w/ C++, threads, dynamic library"
27 depends on BR2_USE_MMU
28 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \