Turn off debug by default
authorIan Jackson <iwj@xenproject.org>
Tue, 23 Nov 2021 16:43:31 +0000 (16:43 +0000)
committerIan Jackson <iwj@xenproject.org>
Tue, 23 Nov 2021 16:43:49 +0000 (16:43 +0000)
Signed-off-by: Ian Jackson <iwj@xenproject.org>
tools/Rules.mk
xen/Kconfig.debug

index b022da3336c4c819c6f864f099a5e6e973655c2a..051a5d35557a5a199619aacfb96d94acc12939f6 100644 (file)
@@ -25,7 +25,7 @@ CFLAGS_xeninclude = -I$(XEN_INCLUDE)
 XENSTORE_XENSTORED ?= y
 
 # A debug build of tools?
-debug ?= y
+debug ?= n
 debug_symbols ?= $(debug)
 
 XEN_GOCODE_URL    = golang.xenproject.org
index fad3050d4f7b09a828ddf985202c9a188c903ffd..4419030235d7fe257b9b53b7fa15e546fa95c43f 100644 (file)
@@ -3,7 +3,7 @@ menu "Debugging Options"
 
 config DEBUG
        bool "Developer Checks"
-       default y
+       default n
        ---help---
          If you say Y here this will enable developer checks such as asserts
          and extra printks. This option is intended for development purposes