Skip to content

Commit

Permalink
Remove arch flag
Browse files Browse the repository at this point in the history
  • Loading branch information
atroyn committed Jul 20, 2024
1 parent a68e407 commit 9ba3aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down

0 comments on commit 9ba3aa3

Please sign in to comment.