diff --git a/setup.py b/setup.py index b4c9be5c..cedc64e4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ from setuptools import Extension, setup from setuptools.command.build_ext import build_ext -__version__ = "0.7.6.alpha1" +__version__ = "0.7.6.alpha2" include_dirs = [ pybind11.get_include(), @@ -76,7 +76,7 @@ class BuildExt(build_ext): """A custom build extension for adding compiler-specific options.""" c_opts = { - "msvc": ["/EHsc", "/openmp", "/O2", "/arch:IA32"], + "msvc": ["/EHsc", "/openmp", "/O2", "/arch:native"], #'unix': ['-O3', '-march=native'], # , '-w' "unix": ["-O3"], # , '-w' }