introduce new build profile "release": -O3 -g0.
authorAndrey Mazo <mazo@iitp.ru>
Fri Oct 23 17:23:45 2009 +0400 (3 months ago)
changeset 549815524c57a627
parent 5497 a1680cbd70e9
child 5499 8878efe25b6c
introduce new build profile "release": -O3 -g0.
wscript
     1.1 --- a/wscript	Fri Oct 23 16:23:38 2009 +0400
     1.2 +++ b/wscript	Fri Oct 23 17:23:45 2009 +0400
     1.3 @@ -34,6 +34,7 @@
     1.4  	# profile name: [optimization_level, warnings_level, debug_level]
     1.5  	'debug':     [0, 2, 3],
     1.6  	'optimized': [3, 2, 1],
     1.7 +	'release':   [3, 2, 0],
     1.8  	}
     1.9  cflags.default_profile = 'debug'
    1.10