From c04346de33fb326aa6ea3abb9f3b07218b12cf7d Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 24 Dec 2016 19:10:40 +0100 Subject: [PATCH] wscript: avoid overwritting CFLAGS' -O in release mode --- wscript | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wscript b/wscript index bbfedf79..d8afc03b 100644 --- a/wscript +++ b/wscript @@ -139,10 +139,8 @@ def configure(ctx): if ctx.env.CC_NAME != 'msvc': # enable debug symbols and configure warnings ctx.env.CFLAGS += ['-g', '-Wall', '-Wextra'] - if ctx.options.build_type == "release": - # set optimization level - ctx.env.CFLAGS += ['-O2'] - else: + if ctx.options.build_type == "debug": + # no optimization in debug mode ctx.env.CFLAGS += ['-O0'] else: # enable debug symbols -- 2.11.0