diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-09-15 21:11:00 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-09-15 21:17:47 (GMT) |
commit | 69a3de2471323bf7265ef2a08b160bed4b276efa (patch) | |
tree | 5854c8797a47073a08ecdc7459767acbaa9ad580 /BuildTools | |
parent | 127b96597bcb1b5d5a823222f3dd28f4b7aa354a (diff) | |
download | swift-contrib-69a3de2471323bf7265ef2a08b160bed4b276efa.zip swift-contrib-69a3de2471323bf7265ef2a08b160bed4b276efa.tar.bz2 |
Build with debug information on all platforms.
There used to be an exception for Windows.
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index 220ccf1..0fe71f1 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -15,7 +15,7 @@ vars.Add(BoolVariable("distcc", "Use DistCC", "no")) vars.Add('distcc_hosts', "DistCC hosts (overrides DISTCC_HOSTS)") vars.Add(EnumVariable("test", "Compile and run tests", "none", ["none", "all", "unit", "system"])) vars.Add(BoolVariable("optimize", "Compile with optimizations turned on", "no")) -vars.Add(BoolVariable("debug", "Compile with debug information", "yes" if os.name != "nt" else "no")) +vars.Add(BoolVariable("debug", "Compile with debug information", "yes")) vars.Add(BoolVariable("warnings", "Compile with warnings turned on", "yes" if os.name != "nt" else "no")) vars.Add(BoolVariable("max_jobs", "Build with maximum number of parallel jobs", "no")) |