summaryrefslogtreecommitdiff
path: root/Lib/distutils/msvccompiler.py
Commit message (Expand)AuthorAgeFilesLines
* Compile the files in the same order they are passed to the compiler.Thomas Heller2003-12-051-1/+5
* See SF #848614: distutils' msvccompiler now tries to detect that MSVC6Thomas Heller2003-11-281-0/+10
* Patch from John Anderson to enable VC 7.1 support.Jeremy Hylton2003-07-171-12/+27
* Restore Python 1.5.2 compatibility.Marc-André Lemburg2003-05-141-1/+1
* Replace line somehow deleted before last checkin.Jeremy Hylton2003-05-091-0/+1
* Variant of SF patch 614770: MSVC 7 supportJeremy Hylton2003-05-091-143/+189
* Pass the preprocessor options also to the resource compilerThomas Heller2003-01-311-1/+1
* Add comment to Distutil files about requiring 1.5.2 compatibility, asAndrew M. Kuchling2002-11-191-1/+2
* Remove 'created by' lines; people can use CVS for this, and the information i...Andrew M. Kuchling2002-11-141-1/+1
* This patch fixes the following bugs:Gustavo Niemeyer2002-11-051-7/+3
* Define NDEBUG for releae builds, just like Python.Jeremy Hylton2002-06-181-1/+2
* Refactor compile() method implementations.Jeremy Hylton2002-06-131-86/+69
* Make setup.py less chatty by default.Jeremy Hylton2002-06-041-3/+4
* Pass the full pathname to MSVC when compiling a debug version. ThisThomas Heller2002-04-251-0/+6
* Make it 1.5.2 compatible again.Thomas Heller2002-02-081-4/+5
* Encode MSVC paths as mbcs. Fixes #509117. 2.2.1 candidate.Martin v. Löwis2002-01-291-0/+4
* Whitespace normalization.Fred Drake2001-12-061-9/+9
* Big patch from Rene Liebscher to simplify the CCompiler API andGreg Ward2000-09-271-102/+33
* *Very* belated application of Thomas Heller's patch to handleGreg Ward2000-09-191-3/+86
* Add /GX to 'compile_options'. This is definitely needed for C++ source;Greg Ward2000-08-311-2/+3
* Add ".cxx" to the list of known C++ extensions.Greg Ward2000-08-301-1/+1
* Added 'debug' flag to 'find_library_file()', and changed code to handle it.Greg Ward2000-08-041-6/+11
* Ditched some debugging prints.Greg Ward2000-08-021-3/+0
* Patch from Rene Liebscher: generate an /IMPLIB: option to ensure thatGreg Ward2000-08-021-1/+13
* Simplify the registry-module-finding code: _winreg or win32api/win32con.Greg Ward2000-06-301-4/+1
* On second thought, first try for _winreg, and then winreg. Only if bothGreg Ward2000-06-291-1/+5
* Changed to use _winreg module instead of winreg.Greg Ward2000-06-291-6/+6
* Lyle Johnson: added 'build_temp' parameter to 'link_shared_{lib,object}()'Greg Ward2000-06-281-4/+7
* Define the 'executables' class attribute so the CCompiler constructorGreg Ward2000-06-251-1/+8
* Import exceptions from errors.py, not ccompiler.py.Greg Ward2000-05-301-4/+4
* Changed to catch compile/link failures and raise CompileError, LibError,Greg Ward2000-05-301-7/+21
* Added support for the 'export_symbols' parameter to 'link_shared_object()'Greg Ward2000-05-201-2/+10
* Added 'link_executable()' method (Berthold Hoellmann).Greg Ward2000-04-191-3/+48
* Cleaned up/simplified error-handling:Greg Ward2000-04-151-0/+3
* Fixed my simplification to Thomas' patch: winreg and win32api export the sameGreg Ward2000-03-311-8/+13
* Simplified Thomas Heller's registry patch: just assign all thoseGreg Ward2000-03-311-32/+32
* Patch from Thomas Heller: use the new winreg module if available.Greg Ward2000-03-311-24/+47
* Don't perpetrate the "_d" hack for naming debugging extensions -- that'sGreg Ward2000-03-311-4/+0
* Don't put Python's library directory into the library search path -- that'sGreg Ward2000-03-311-3/+0
* Call 'find_exe()', not '_find_exe()'.Greg Ward2000-03-291-3/+3
* Added 'runtime_library_dirs' parameter to 'link_*()' methods, and warn thatGreg Ward2000-03-261-6/+11
* Changed to pay attention to the 'runtime_library_dirs' list (= 'rpath'Greg Ward2000-03-181-1/+7
* Renamed 'link_static_lib() to 'create_static_lib()', and rewrote it createGreg Ward2000-03-101-25/+15
* Serious overhaul of the C compiler interface and the two classes thatGreg Ward2000-03-061-130/+105
* Changed '__rcsid__' to '__revision__'.Greg Ward2000-03-021-1/+1
* Ditched '_find_SET()', since it was a no-value-added wrapper aroundGreg Ward2000-02-111-23/+14
* Latest patch from Thomas Heller/Robin Becker:Greg Ward2000-02-111-47/+68
* Stylistic changes to the registry-grovelling code: code formatting, changedGreg Ward2000-02-101-23/+51
* Patch from Thomas heller:Greg Ward2000-02-101-11/+33
* Added 'debug' flags to compile and link methods, and added dummy code forGreg Ward2000-02-091-3/+13