From 8acae77e4282d3a50c8fd9e140d4898d625182ca Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 8 Dec 2015 15:52:54 -0700 Subject: [PATCH] build: default to CONFIG_DEBUG=n Normal users building SPDK probably won't read CONFIG, so provide a reasonable default of release-mode builds. Change-Id: I2609aa445eabf83bd2cdbe79c548d8c0da7db7e1 Signed-off-by: Daniel Verkamp --- CONFIG | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONFIG b/CONFIG index 2e6984674..0f3412452 100644 --- a/CONFIG +++ b/CONFIG @@ -32,7 +32,7 @@ # # Build with debug logging. Turn off for performance testing and normal usage -CONFIG_DEBUG?=y +CONFIG_DEBUG?=n # Build with code coverage instrumentation. CONFIG_COVERAGE=n