From 72b8a0952a10c94aa0483a83bec9253b53a30e39 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 11 Apr 2012 08:08:44 +1000 Subject: buildtools: Add --enable-debug option --- buildtools/wafsamba/samba_autoconf.py | 4 ++++ buildtools/wafsamba/wscript | 3 +++ 2 files changed, 7 insertions(+) (limited to 'buildtools') diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index 2bb86c786c..08df2b3c2f 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -599,6 +599,10 @@ def SAMBA_CONFIG_H(conf, path=None): if not IN_LAUNCH_DIR(conf): return + if Options.options.debug: + conf.ADD_CFLAGS('-g', + testflags=True) + if Options.options.developer: # we add these here to ensure that -Wstrict-prototypes is not set during configure conf.ADD_CFLAGS('-Wall -g -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k -Wmissing-prototypes -fno-common', diff --git a/buildtools/wafsamba/wscript b/buildtools/wafsamba/wscript index a302280038..ff18777575 100755 --- a/buildtools/wafsamba/wscript +++ b/buildtools/wafsamba/wscript @@ -81,6 +81,9 @@ def set_options(opt): gr.add_option('--enable-auto-reconfigure', help='enable automatic reconfigure on build', action='store_true', dest='enable_auto_reconfigure') + gr.add_option('--enable-debug', + help=("Turn on debugging symbols"), + action="store_true", dest='debug', default=False) gr.add_option('--enable-developer', help=("Turn on developer warnings and debugging"), action="store_true", dest='developer', default=False) -- cgit