Skip to content

Commit

Permalink
Compiler argument parameter removal on MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 10, 2024
1 parent 1b6f31f commit 9a82729
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 9a82729

Please sign in to comment.