introduce new build profile "release": -O3 -g0.
authorAndrey Mazo <mazo@iitp.ru>
Fri, 23 Oct 2009 17:23:45 +0400
changeset 5452 15524c57a627
parent 5451 a1680cbd70e9
child 5453 8878efe25b6c
introduce new build profile "release": -O3 -g0.
wscript
--- a/wscript	Fri Oct 23 16:23:38 2009 +0400
+++ b/wscript	Fri Oct 23 17:23:45 2009 +0400
@@ -34,6 +34,7 @@
 	# profile name: [optimization_level, warnings_level, debug_level]
 	'debug':     [0, 2, 3],
 	'optimized': [3, 2, 1],
+	'release':   [3, 2, 0],
 	}
 cflags.default_profile = 'debug'