From 397572308a3c2b23f9bd1e5f2a3ab666e5f0d877 Mon Sep 17 00:00:00 2001 From: Nils <> Date: Sun, 19 Apr 2020 00:13:53 +0200 Subject: [PATCH] Switch to 'debug' mode by default. This is not really debug in the traditional programming sense but a 'verbose-mode'. It has close to no effect on performance but will help a lot so users don't have to build themselves to report bugs. --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 52abf7c..6db51de 100644 --- a/wscript +++ b/wscript @@ -17,7 +17,7 @@ def options(opt): # opt.add_option('--use-system-ntk', action='store_true', default=False, # dest='use_system_ntk', # help="Link to system-installed shared NTK instead of bundled version") - opt.add_option('--enable-debug', action='store_true', default=False, dest='debug', + opt.add_option('--enable-debug', action='store_true', default=True, dest='debug', help='Build for debugging') opt.add_option('--disable-sse', action='store_false', default=True, dest='sse', help='Disable SSE optimization')