Building Python C extension modules for Windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:09:15Z http://stackoverflow.com/feeds/question/101061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/101061/building-python-c-extension-modules-for-windows 1 Building Python C extension modules for Windows Will Harris 2008-09-19T10:53:12Z 2008-09-19T10:58:36Z <p>I have a C extension module and it would be nice to distribute built binaries. Setuptools makes it easy to build extensions modules on OS X and GNU/Linux, since those OSs come with GCC, but I don't know how to do it in Windows.</p> <p>Would I need to buy a copy of Visual Studio, or does Visual Studio Express work? Can I just use Cygwin or MinGW?</p> http://stackoverflow.com/questions/101061/building-python-c-extension-modules-for-windows/101087#101087 5 Answer by eliben for Building Python C extension modules for Windows eliben 2008-09-19T10:57:36Z 2008-09-19T10:57:36Z <p>You can use both MinGW and VC++ Express (free, no need to buy it).</p> <p>See:</p> <ol> <li><a href="http://eli.thegreenplace.net/2008/06/28/compiling-python-extensions-with-distutils-and-mingw/" rel="nofollow">http://eli.thegreenplace.net/2008/06/28/compiling-python-extensions-with-distutils-and-mingw/</a></li> <li><a href="http://eli.thegreenplace.net/2008/06/27/creating-python-extension-modules-in-c/" rel="nofollow">http://eli.thegreenplace.net/2008/06/27/creating-python-extension-modules-in-c/</a></li> </ol> http://stackoverflow.com/questions/101061/building-python-c-extension-modules-for-windows/101090#101090 1 Answer by Thomas Wouters for Building Python C extension modules for Windows Thomas Wouters 2008-09-19T10:57:53Z 2008-09-19T10:57:53Z <p>Setuptools and distutils don't come with gcc, but they use the same compiler Python was built with. The difference is mostly that on the typical UNIX system that compiler is 'gcc' and you have it installed.</p> <p>In order to compile extension modules on Windows, you need a compiler for Windows. MSVS will do, even the Express version I believe, but it does have to be the same MSVC++ version as Python was built with. Or you can use Cygwin or MinGW; See the last section of <a href="http://docs.python.org/inst/tweak-flags.html" rel="nofollow">http://docs.python.org/inst/tweak-flags.html</a>.</p>