From 2a5408a6bc2e0f9d3b64238fdf8acac7729a8943 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 9 Dec 2012 13:32:47 +0000 Subject: [PATCH] Use -O2 rather than -O3, as an experiment, really. --- wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 37d6b48d..5dba2b5e 100644 --- a/wscript +++ b/wscript @@ -50,7 +50,9 @@ def configure(conf): if conf.options.enable_debug: conf.env.append_value('CXXFLAGS', '-g') else: - conf.env.append_value('CXXFLAGS', '-O3') + # Somewhat experimental use of -O2 rather than -O3 to see if + # Windows builds are any more reliable + conf.env.append_value('CXXFLAGS', '-O2') conf.check_cxx(fragment = """ #include \n -- 2.30.2