diff --git a/build.py b/build.py index 963f91d..1b72881 100644 --- a/build.py +++ b/build.py @@ -58,6 +58,9 @@ if PLATFORM == 'Darwin': gpp_command.append('-Xpreprocessor') gpp_command.append('-O3') + gpp_command.remove('-Wunsafe-loop-optimizations') + gpp_command.remove('-Wvolatile-register-var') + gpp_command.remove('-Weffc+') gpp_command.remove('-Ofast') gpp_command.remove('-msse') gpp_command.remove('-msse2')