summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/msvc9compiler.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
| | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
* Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.pySteve Dower2015-08-081-1/+1
|
* normalize whitespace in Lib/distutils/msvc9compiler.pyMark Hammond2011-10-171-2/+2
|
* Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵Mark Hammond2011-10-171-20/+57
| | | | manifest
* Merged revisions 86438 via svnmerge fromÉric Araujo2010-11-121-1/+0
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86438 | eric.araujo | 2010-11-12 23:25:23 +0100 (ven., 12 nov. 2010) | 2 lines And now for something completely different: Finish fixing #10252 again. ........
* Merged revisions 86274,86276 via svnmerge fromÉric Araujo2010-11-121-14/+17
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86274 | eric.araujo | 2010-11-06 16:57:52 +0100 (sam., 06 nov. 2010) | 2 lines Correct the fix for #10252: Popen objects have no close method. ........ r86276 | eric.araujo | 2010-11-06 19:03:52 +0100 (sam., 06 nov. 2010) | 2 lines Fix #10252 again (hopefully definitely). Patch by Brian Curtin. ........
* Merged revisions 86223-86224,86226,86234 via svnmerge fromÉric Araujo2010-11-061-4/+6
| | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86223 | eric.araujo | 2010-11-06 00:51:56 +0100 (sam., 06 nov. 2010) | 2 lines Always close files in distutils code and tests (#10252). ........ r86224 | eric.araujo | 2010-11-06 00:58:34 +0100 (sam., 06 nov. 2010) | 2 lines Add missing entry for r86223. ........ r86226 | eric.araujo | 2010-11-06 00:59:32 +0100 (sam., 06 nov. 2010) | 2 lines Of course, I forgot one file in r86223. ........ r86234 | eric.araujo | 2010-11-06 03:10:32 +0100 (sam., 06 nov. 2010) | 2 lines Also close file descriptors from os.popen and subprocess.Popen ........
* fix finding visual studio 2008 on 64 bit #8854Benjamin Peterson2010-06-211-4/+14
|
* search in the alternative location for VCExpressTarek Ziadé2010-03-061-1/+11
|
* added local get_platform/set_platform APIs in distutils.sysconfigTarek Ziadé2010-01-261-5/+5
|
* taking sysconfig out of distutilsTarek Ziadé2010-01-231-5/+5
|
* backported r76993 and r76994 so the trunk behaves the same way with MSVC ↵Tarek Ziadé2009-12-211-22/+28
| | | | Manifest files editing
* massive import cleaning in DistutilsTarek Ziadé2009-12-211-4/+3
|
* Issue #4120: Drop reference to CRT from manifest when buildingMartin v. Löwis2009-12-031-0/+23
| | | | extensions with msvc9compiler.
* Issue #5394: removed > 2.3 syntax from distutils.msvc9compilerTarek Ziadé2009-03-071-16/+20
|
* Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 ↵Tarek Ziadé2008-12-301-2/+2
| | | | if MSVC is not found
* Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise ↵Christian Heimes2008-11-281-1/+1
| | | | 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.