diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-01 18:59:42 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-01 18:59:42 +0000 |
| commit | 03d348150eeaffbbce886e60a9cf0194a33e81ca (patch) | |
| tree | 42bc2a337a86b7edf773efa4f84ff428b0aba7d6 | |
| parent | 5e8d74d83b479c3175e837c402d341fb558d3873 (diff) | |
Revert -O2 hack as it seems to be ok with a newer compiler.
| -rw-r--r-- | wscript | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -50,10 +50,7 @@ def configure(conf): if conf.options.enable_debug: conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG']) else: - # It seems that -O3 possibly causes weird problems with crashes - # inside boost::signals2 on Windows 32-bit. Didn't quite get - # to the bottom of it, though. - conf.env.append_value('CXXFLAGS', '-O2') + conf.env.append_value('CXXFLAGS', '-O3') conf.check_cfg(package = 'libavformat', args = '--cflags --libs', uselib_store = 'AVFORMAT', mandatory = True) conf.check_cfg(package = 'libavfilter', args = '--cflags --libs', uselib_store = 'AVFILTER', mandatory = True) |
