summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Grall <jgrall@amazon.com>2022-12-01 13:54:04 +0000
committerJulien Grall <jgrall@amazon.com>2022-12-01 13:54:04 +0000
commit894a7786c8eb20568aa8d425de59e4e3cffd5b40 (patch)
treea0c19b0836ab7c0b1b296b32fc6da95bbbdc6772
parentd86fb95cfd070ce77ae646d3f8a96ad452174b2c (diff)
downloadxen-4.17.0-rc4.tar.gz
Turn off debug by default4.17.0-rc4
Signed-off-by: Julien Grall <jgrall@amazon.com>
-rw-r--r--tools/Rules.mk2
-rw-r--r--xen/Kconfig.debug2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/Rules.mk b/tools/Rules.mk
index 6e135387bd..a5229bb5ac 100644
--- a/tools/Rules.mk
+++ b/tools/Rules.mk
@@ -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
diff --git a/xen/Kconfig.debug b/xen/Kconfig.debug
index fad3050d4f..4419030235 100644
--- a/xen/Kconfig.debug
+++ b/xen/Kconfig.debug
@@ -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