From 9ba3aa336063a1edec2ed2f39d7c1f4a7fd42191 Mon Sep 17 00:00:00 2001 From: atroyn Date: Sat, 20 Jul 2024 00:43:02 -0700 Subject: [PATCH] Remove arch flag --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ad14c0a0..20f99598 100644 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ class BuildExt(build_ext): """A custom build extension for adding compiler-specific options.""" c_opts = { - "msvc": ["/EHsc", "/O2", "/arch:IA32"], + "msvc": ["/EHsc", "/O2"], #'unix': ['-O3', '-march=native'], # , '-w' "unix": ["-O3"], # , '-w' }