1. 9436a75 Compile the files in the same order they are passed to the compiler. by Thomas Heller · 21 years ago
  2. b310591 See SF #848614: distutils' msvccompiler now tries to detect that MSVC6 by Thomas Heller · 21 years ago
  3. e9a92aa Patch from John Anderson to enable VC 7.1 support. by Jeremy Hylton · 21 years ago
  4. f0b5d17 Restore Python 1.5.2 compatibility. by Marc-André Lemburg · 21 years ago
  5. 93724db Replace line somehow deleted before last checkin. by Jeremy Hylton · 21 years ago
  6. 9ddf6c3 Variant of SF patch 614770: MSVC 7 support by Jeremy Hylton · 21 years ago
  7. 9582794 Pass the preprocessor options also to the resource compiler by Thomas Heller · 21 years ago
  8. d448f66 Add comment to Distutil files about requiring 1.5.2 compatibility, as by Andrew M. Kuchling · 22 years ago
  9. a6483d2 Remove 'created by' lines; people can use CVS for this, and the information is often out of date by Andrew M. Kuchling · 22 years ago
  10. 6b01685 This patch fixes the following bugs: by Gustavo Niemeyer · 22 years ago
  11. 2683ac7 Define NDEBUG for releae builds, just like Python. by Jeremy Hylton · 22 years ago
  12. 1bba31d Refactor compile() method implementations. by Jeremy Hylton · 22 years ago
  13. cd8a114 Make setup.py less chatty by default. by Jeremy Hylton · 22 years ago
  14. 69d31b7 Pass the full pathname to MSVC when compiling a debug version. This by Thomas Heller · 22 years ago
  15. 745b460 Make it 1.5.2 compatible again. by Thomas Heller · 22 years ago
  16. 9635d0b Encode MSVC paths as mbcs. Fixes #509117. 2.2.1 candidate. by Martin v. Löwis · 22 years ago
  17. b94b849 Whitespace normalization. by Fred Drake · 23 years ago
  18. 4240648 Big patch from Rene Liebscher to simplify the CCompiler API and by Greg Ward · 24 years ago
  19. 9c0ea13 *Very* belated application of Thomas Heller's patch to handle by Greg Ward · 24 years ago
  20. 8a98cd9 Add /GX to 'compile_options'. This is definitely needed for C++ source; by Greg Ward · 24 years ago
  21. 408e9ae Add ".cxx" to the list of known C++ extensions. by Greg Ward · 24 years ago
  22. d142564 Added 'debug' flag to 'find_library_file()', and changed code to handle it. by Greg Ward · 24 years ago
  23. 04c90fc Ditched some debugging prints. by Greg Ward · 24 years ago
  24. 159eb92 Patch from Rene Liebscher: generate an /IMPLIB: option to ensure that by Greg Ward · 24 years ago
  25. 1b5ec76 Simplify the registry-module-finding code: _winreg or win32api/win32con. by Greg Ward · 24 years ago
  26. 83c3870 On second thought, first try for _winreg, and then winreg. Only if both by Greg Ward · 24 years ago
  27. cd079c4 Changed to use _winreg module instead of winreg. by Greg Ward · 24 years ago
  28. bfc79d6 Lyle Johnson: added 'build_temp' parameter to 'link_shared_{lib,object}()' by Greg Ward · 24 years ago
  29. 992c8f9 Define the 'executables' class attribute so the CCompiler constructor by Greg Ward · 24 years ago
  30. 3add77f Import exceptions from errors.py, not ccompiler.py. by Greg Ward · 24 years ago
  31. d151711 Changed to catch compile/link failures and raise CompileError, LibError, by Greg Ward · 24 years ago
  32. 5299b6a Added support for the 'export_symbols' parameter to 'link_shared_object()' by Greg Ward · 24 years ago
  33. f70c603 Added 'link_executable()' method (Berthold Hoellmann). by Greg Ward · 24 years ago
  34. 02a1a2b Cleaned up/simplified error-handling: by Greg Ward · 24 years ago
  35. 19ce166 Fixed my simplification to Thomas' patch: winreg and win32api export the same by Greg Ward · 24 years ago
  36. 1027e3f Simplified Thomas Heller's registry patch: just assign all those by Greg Ward · 24 years ago
  37. 7642f5c Patch from Thomas Heller: use the new winreg module if available. by Greg Ward · 24 years ago
  38. 95c0b26 Don't perpetrate the "_d" hack for naming debugging extensions -- that's by Greg Ward · 24 years ago
  39. 6e8ee5d Don't put Python's library directory into the library search path -- that's by Greg Ward · 24 years ago
  40. 41b4dd6 Call 'find_exe()', not '_find_exe()'. by Greg Ward · 24 years ago
  41. 2f557a2 Added 'runtime_library_dirs' parameter to 'link_*()' methods, and warn that by Greg Ward · 24 years ago
  42. d03f88a Changed to pay attention to the 'runtime_library_dirs' list (= 'rpath' by Greg Ward · 24 years ago
  43. 09fc542 Renamed 'link_static_lib() to 'create_static_lib()', and rewrote it create by Greg Ward · 24 years ago
  44. 32c4a8a Serious overhaul of the C compiler interface and the two classes that by Greg Ward · 24 years ago
  45. 3ce77fd Changed '__rcsid__' to '__revision__'. by Greg Ward · 24 years ago
  46. 5de8cee Ditched '_find_SET()', since it was a no-value-added wrapper around by Greg Ward · 24 years ago
  47. 6998809 Latest patch from Thomas Heller/Robin Becker: by Greg Ward · 24 years ago
  48. 62e3393 Stylistic changes to the registry-grovelling code: code formatting, changed by Greg Ward · 24 years ago
  49. 4ba9b2e Patch from Thomas heller: by Greg Ward · 24 years ago
  50. 386b844 Added 'debug' flags to compile and link methods, and added dummy code for by Greg Ward · 24 years ago
  51. 1b9c6f7 Revised version (thank to Thomas Heller and Robin Becker) that tries a lot by Greg Ward · 24 years ago
  52. 01f5215 Removed /GD switch -- currently ignored by MSVC. by Greg Ward · 24 years ago
  53. 8dbf681 Added compiler flags suggested by Thomas Heller: optimize, use multi-threaded by Greg Ward · 24 years ago
  54. c8a95c8 Fix library filename methods -- there is no 'lib' prefix under DOS/Windows. by Greg Ward · 24 years ago
  55. 0bdd90a Catch up with terminology change in UnixCCompiler: 'includes' -> 'include_dirs'. by Greg Ward · 25 years ago
  56. c74138d Catch up with changes in 'gen_lib_options()': by Greg Ward · 25 years ago
  57. df178f9 Catch up with latest changes in CCompiler: by Greg Ward · 25 years ago
  58. 3d50b90 Ditched redundant docstrings and comments (overlap with ccompiler.py). by Greg Ward · 25 years ago
  59. dbd1276 Added msvccompiler module exactly as supplied by Perry Stoll. by Greg Ward · 25 years ago