introduce new build profile "release": -O3 -g0.

This commit is contained in:
Andrey Mazo
2009-10-23 17:23:45 +04:00
parent 664f556dbd
commit b14f273040

View File

@@ -34,6 +34,7 @@ cflags.profiles = {
# profile name: [optimization_level, warnings_level, debug_level]
'debug': [0, 2, 3],
'optimized': [3, 2, 1],
'release': [3, 2, 0],
}
cflags.default_profile = 'debug'