]> xenbits.xensource.com Git - xen.git/commitdiff
Turn off debug by default
authorJulien Grall <julien@xen.org>
Thu, 18 Jul 2024 14:28:17 +0000 (15:28 +0100)
committerJulien Grall <julien@xen.org>
Thu, 18 Jul 2024 14:28:17 +0000 (15:28 +0100)
Signed-off-by: Julien Grall <jgrall@amazon.com>
tools/Rules.mk
xen/Kconfig.debug

index 18cf83f5be83bdaf84fafeb669e0a0c5232ec226..cb3fd82c1f198e1525da283a43cb947d9e612c92 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 07ff7eb7ba831cb1f37ef583926d20a5e7b1ad38..78b5a7c6033a2e928bf77ab8c23cb60b6dcc81be 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