Is there a way to explicitly force the compiler for building Cython extensions when running python setup.py install
? Where setup.py
is of the form:
You can provide (default) command line arguments for distutils in a separate file called setup.cfg
(placed parallel to your setup.py
). See the docs for more information. To set the compiler use something like:
[build]
compiler=msvc
Now calling python setup.py build
is equivalent to calling python setup.py build --compiler=msvc
. (You can still direct distutils to use an other complier by calling python setup.py build --compiler=someothercompiler
)
Now you have (successfully directed distutils to use a msvc compiler. Unfortunately there is no option to tell it which msvc compiler to use. Basically there are two options:
One: Do nothing and distutils will try to locate vcvarsall.bat
and use that to setup an environment. vcvarsall.bat
(and the compiler it sets the environment up for) are part of Visual Studio, so you have to have installed that for it to work.
Two: Install the Windows SDK and tell distutils to use that. Be aware that the name DISUTILS_USE_SDK
is rather missleading (at least in my opinion). It does NOT in fact tell distutils to use the SDK (and it's setenv.bat
) to setup an environment, rather it means that distutils should assume the environment has already been set up. That is why you have to use some kind of Makefile.bat
as you have shown in the OP.
Side Note: The specific version of VisualStudio or the Windows SDK depends on the targeted python version.