Build debuggable build by default.

git-svn-id: svn://localhost/ardour2/branches/3.0@10466 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2011-11-06 04:05:57 +00:00
parent 091b086b32
commit dde05328a9
2 changed files with 1 additions and 2 deletions

BIN
waf vendored

Binary file not shown.

View File

@ -352,7 +352,7 @@ def set_compiler_flags (conf,opt):
def options(opt):
opt.load('compiler_c')
opt.load('compiler_cxx')
autowaf.set_options(opt)
autowaf.set_options(opt, debug_by_default=True)
opt.add_option('--program-name', type='string', action='store', default='Ardour', dest='program_name',
help='The user-visible name of the program being built')
opt.add_option('--arch', type='string', action='store', dest='arch',
@ -379,7 +379,6 @@ def options(opt):
opt.add_option('--nls', action='store_true', default=True, dest='nls',
help='Enable i18n (native language support) (default)')
opt.add_option('--no-nls', action='store_false', dest='nls')
opt.add_option('--optimize', action='store_false', dest='debug')
opt.add_option('--phone-home', action='store_false', default=False, dest='phone_home')
opt.add_option('--stl-debug', action='store_true', default=False, dest='stl_debug',
help='Build with debugging for the STL')