summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/msvc9compiler.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 67414 via svnmerge fromChristian Heimes2008-11-281-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r67414 | christian.heimes | 2008-11-28 12:02:32 +0100 (Fri, 28 Nov 2008) | 1 line Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception ........
* avoid putting unicode objects in the environment causingMark Hammond2008-09-181-3/+4
| | | | later test failures. As discussed on #python-dev
* Issue 2975: when compiling multiple extension modules with visual studio 2008Amaury Forgeot d'Arc2008-09-021-2/+13
| | | | | | | | | | from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests.
* #2581: Vista UAC/elevation support for bdist_wininstMark Hammond2008-05-021-1/+24
|
* Issue #2513: enable 64bit cross compilation on windows.Mark Hammond2008-04-071-30/+42
|
* Fixed bug #1557 by using popen.communicate() before popen.wait()Christian Heimes2007-12-051-2/+5
|
* Applied my patch #1455 with some extra fixes for VS 2005Christian Heimes2007-12-031-0/+658
The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier. I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.