]> xenbits.xensource.com Git - people/tklengyel/xen.git/commitdiff
Turn off debug by default
authorJulien Grall <jgrall@amazon.com>
Thu, 1 Dec 2022 13:54:04 +0000 (13:54 +0000)
committerJulien Grall <jgrall@amazon.com>
Thu, 1 Dec 2022 13:54:04 +0000 (13:54 +0000)
Signed-off-by: Julien Grall <jgrall@amazon.com>
tools/Rules.mk
xen/Kconfig.debug

index 6e135387bd7ee45f05388efd56e51aa280561ce1..a5229bb5acb409e493d8d4b978080809cf971632 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