From 9a48048682f0840dec2f6ae64fd36d9d8b22acaa Mon Sep 17 00:00:00 2001 From: sunghan Date: Tue, 4 Apr 2017 15:52:17 +0900 Subject: [PATCH] add DEBUG condition to select debug configuration by default DEBUG_MM_HEAPINFO can be enabled when DEBUG is enabled. warning: (ENABLE_HEAPINFO) selects DEBUG_MM_HEAPINFO which has unmet direct dependencies (DEBUG) --- apps/system/utils/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/system/utils/Kconfig b/apps/system/utils/Kconfig index 2b3d9a9..35b6e2c 100644 --- a/apps/system/utils/Kconfig +++ b/apps/system/utils/Kconfig @@ -77,7 +77,7 @@ config ENABLE_HEAPINFO bool "heapinfo" default y depends on !BUILD_PROTECTED - select DEBUG_MM_HEAPINFO + select DEBUG_MM_HEAPINFO if DEBUG ---help--- Show information about memory status per thread -- 2.7.4