From a7104a2c2d287ba1c2cba4731edb51b65849896e Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Fri, 11 Oct 2024 03:42:18 +0800 Subject: [PATCH] Compiler argument parameter removal on MacOS. --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 1b72881..32be7d0 100644 --- a/build.py +++ b/build.py @@ -60,7 +60,7 @@ gpp_command.append('-O3') gpp_command.remove('-Wunsafe-loop-optimizations') gpp_command.remove('-Wvolatile-register-var') - gpp_command.remove('-Weffc+') + gpp_command.remove('-Weffc++') gpp_command.remove('-Ofast') gpp_command.remove('-msse') gpp_command.remove('-msse2')