scons: Debug build by default.
authorJosé Fonseca <jfonseca@vmware.com>
Wed, 17 Jun 2009 09:14:32 +0000 (10:14 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 17 Jun 2009 14:23:24 +0000 (15:23 +0100)
Match what autotools and other build systems do by default.

common.py
scons/generic.py

index a687efc86fac7b9cdfbe9324676b67b12f558367..2d1b258087f4583d7853fbde02f4fdebc2d41e57 100644 (file)
--- a/common.py
+++ b/common.py
@@ -53,7 +53,7 @@ def AddOptions(opts):
                from SCons.Variables.EnumVariable import EnumVariable as EnumOption
        except ImportError:
                from SCons.Options.EnumOption import EnumOption
-       opts.Add(BoolOption('debug', 'debug build', 'no'))
+       opts.Add(BoolOption('debug', 'debug build', 'yes'))
        opts.Add(BoolOption('profile', 'profile build', 'no'))
        opts.Add(BoolOption('quiet', 'quiet command lines', 'yes'))
        opts.Add(EnumOption('machine', 'use machine-specific assembly code', default_machine,
index 29ddf76d6ff3e32134254472abde73c2fae9972a..0b3ef5a15d501598fc782cfe63c5b53e6ab9eeef 100644 (file)
@@ -264,7 +264,7 @@ def generate(env):
         pass
 
     # Build type
-    env['debug'] = _bool_map[ARGUMENTS.get('debug', 'no')]
+    env['debug'] = _bool_map[ARGUMENTS.get('debug', 'yes')]
     env['profile'] = _bool_map[ARGUMENTS.get('profile', 'no')]
 
     # Put build output in a separate dir, which depends on the current