clang on el capitan etc. no longer supports -fstrength-reduce
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 28 Sep 2016 20:52:16 +0000 (16:52 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 28 Sep 2016 20:52:16 +0000 (16:52 -0400)
wscript

diff --git a/wscript b/wscript
index 82505dc74d612049fa41342bfab1ea0f31763559..9edfde8a8cfab7258997a63d5d0cae3571589da6 100644 (file)
--- a/wscript
+++ b/wscript
@@ -144,7 +144,7 @@ compiler_flags_dictionaries['clang'] = clang_dict;
 
 clang_darwin_dict = compiler_flags_dictionaries['clang'].copy();
 clang_darwin_dict['cxx-strict'] = [ '-ansi', '-Wnon-virtual-dtor', '-Woverloaded-virtual', ]
-clang_darwin_dict['full-optimization'] = [ '-O3', '-ffast-math', '-fstrength-reduce' ]
+clang_darwin_dict['full-optimization'] = [ '-O3', '-ffast-math']
 compiler_flags_dictionaries['clang-darwin'] = clang_darwin_dict;
 
 def fetch_git_revision ():