1. 593e4ca Fix for issue #7724: ensure that distutils and python's own setup.py by Ronald Oussoren · 15 years ago
  2. dac6aeb4 Revert r80963 - it broke compilation everywhere by Antoine Pitrou · 15 years ago
  3. d875d3c Fix for issue #7724: make it possible to build using by Ronald Oussoren · 15 years ago
  4. dd7bef9 reverting partially distutils to its 2.6.x state so 2.7a4 looks more like the 2.7b1 in this. the whole revert will occur after a4 is tagged by Tarek Ziadé · 15 years ago
  5. 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 15 years ago
  6. c25417f Fixed #7617: all flavors of gcc should be recognized now by Tarek Ziadé · 15 years ago
  7. bed26a3 Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler by Tarek Ziadé · 16 years ago
  8. 439bf93 Fixed #6164 AIX specific linker argument in Distutils unixcompiler by Tarek Ziadé · 16 years ago
  9. e2be83d Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used by Tarek Ziadé · 16 years ago
  10. a6c5dc0 Apply patch for issue 3090: ARCHFLAGS parsing incorrect by Jesse Noller · 17 years ago
  11. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 17 years ago
  12. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  13. ef3f32f Whitespace normalization. by Tim Peters · 19 years ago
  14. d6272a3 MacOSX: The universal build requires that users have the MacOSX10.4u SDK by Ronald Oussoren · 19 years ago
  15. 7b9053a MacOSX: fix rather dumb buglet that made it impossible to create extensions on by Ronald Oussoren · 19 years ago
  16. 211219a Whitespace normalization. by Tim Peters · 19 years ago
  17. b02daf7 Patch #1488098. by Ronald Oussoren · 19 years ago
  18. 061f132 Patch #973204: Use -rpath instead of -R on Irix and Tru64. by Martin v. Löwis · 21 years ago
  19. 182b5ac Whitespace normalization, via reindent.py. by Tim Peters · 21 years ago
  20. 19c0d94 Fixed indentation error. Closes bug #746953. by Jack Jansen · 22 years ago
  21. b71bcb6 Patch #740301: Add +s when linking shared libraries on HP-UX, use -L by Martin v. Löwis · 22 years ago
  22. d7e83a1 Patch #718049: Setting exe_extension for cygwin by Jason Tishler · 22 years ago
  23. 69ceb33 Patch #642019: Recognize gcc-x.y as gcc. by Martin v. Löwis · 22 years ago
  24. a6483d2 Remove 'created by' lines; people can use CVS for this, and the information is often out of date by Andrew M. Kuchling · 23 years ago
  25. 6b01685 This patch fixes the following bugs: by Gustavo Niemeyer · 23 years ago
  26. 628e3bf MacOSX linker doesn't understand -R flag at all, no matter how you feed it by Skip Montanaro · 23 years ago
  27. df453fd The .preprocess() method didn't work, because it didn't add the input file by Andrew M. Kuchling · 23 years ago
  28. 1b046e4 Add implementation of _compile() and use default compile() method. by Jeremy Hylton · 23 years ago
  29. 1bba31d Refactor compile() method implementations. by Jeremy Hylton · 23 years ago
  30. 129b17d More style changes and little cleanups. by Jeremy Hylton · 23 years ago
  31. 022640d Some more style improvements by Jeremy Hylton · 23 years ago
  32. 28f46e1 Python style conformance: Delete spaces between name of function and arglist. by Jeremy Hylton · 23 years ago
  33. 332a146 Remove unused imports caught by pychecker by Jeremy Hylton · 23 years ago
  34. cd8a114 Make setup.py less chatty by default. by Jeremy Hylton · 23 years ago
  35. 005dbb2 on MacOSX/Darwin, use ranlib when building static libs. by Just van Rossum · 23 years ago
  36. d15db5c When using GCC, use the right option to add a directory to the list of dirs by Fred Drake · 23 years ago
  37. b94b849 Whitespace normalization. by Fred Drake · 23 years ago
  38. e259e59 Patch by Bill Noon: added 'dylib' as a library type along with by Jack Jansen · 24 years ago
  39. 63a4740 Fix a mismatched parenthesis in the last patch. by Guido van Rossum · 24 years ago
  40. 286b107 [Bug #441527] Fixes for preprocessor support, contributed by Tarn by Andrew M. Kuchling · 24 years ago
  41. 7880e5e Patch #413912 from Steve Majewski: Add .m to the list of extensions by Andrew M. Kuchling · 24 years ago
  42. 4240648 Big patch from Rene Liebscher to simplify the CCompiler API and by Greg Ward · 25 years ago
  43. be86bde Standardize whitespace in function calls. by Greg Ward · 25 years ago
  44. e5e6015 Added 'debug' flag to 'find_library_file()'. by Greg Ward · 25 years ago
  45. 7499847 Fix to call 'library_filename()' instead of the non-existent by Greg Ward · 25 years ago
  46. bfc79d6 Lyle Johnson: added 'build_temp' parameter to 'link_shared_{lib,object}()' by Greg Ward · 25 years ago
  47. 73076ff Got rid of direct dependence on the sysconfig module. Mainly, this by Greg Ward · 25 years ago
  48. 3ff3b03 Added 'preprocess()' method to CCompiler interface, and implemented by Greg Ward · 25 years ago
  49. 3add77f Import exceptions from errors.py, not ccompiler.py. by Greg Ward · 25 years ago
  50. d151711 Changed to catch compile/link failures and raise CompileError, LibError, by Greg Ward · 25 years ago
  51. 5299b6a Added support for the 'export_symbols' parameter to 'link_shared_object()' by Greg Ward · 25 years ago
  52. 8eef583 Don't run "ranlib" if sysconfig's RANLIB (from Python's Makefile) starts by Greg Ward · 25 years ago
  53. 1c79330 Cleaned up use of sysconfig module a bit: don't import more names by Greg Ward · 25 years ago
  54. e21dabe Added 'runtime_library_dirs' parameter to 'link_*()' methods, and changed to by Greg Ward · 25 years ago
  55. d03f88a Changed to pay attention to the 'runtime_library_dirs' list (= 'rpath' by Greg Ward · 25 years ago
  56. 036c805 Renamed 'link_static_lib() to 'create_static_lib()'. by Greg Ward · 25 years ago
  57. 32c4a8a Serious overhaul of the C compiler interface and the two classes that by Greg Ward · 25 years ago
  58. 3ce77fd Changed '__rcsid__' to '__revision__'. by Greg Ward · 25 years ago
  59. 49ffce1 In the 'compile()' method: preserve the directory portion of source by Greg Ward · 25 years ago
  60. f114657 In compile/link methods: ensure that the directory we expect to be writing to by Greg Ward · 25 years ago
  61. 10ca82b Typecheck 'output_dir' argument to compile/link methods. by Greg Ward · 25 years ago
  62. ba233fb Added 'debug' flags to compile and link methods, and modified code to add by Greg Ward · 25 years ago
  63. ef6f515 Changed 'compile()' method to compile files one-at-a-time -- gives better by Greg Ward · 25 years ago
  64. c9f3187 Abstracted '_fix_link_args()' out of 'link_shared_object()'. by Greg Ward · 25 years ago
  65. 04d7832 In 'compile()' method, renamed 'includes' parameter to 'include_dirs' for by Greg Ward · 25 years ago
  66. 4fecfce Fixed order of link options: object files now precede library stuff. by Greg Ward · 26 years ago
  67. 0e3530b Catch up with latest changes in CCompiler: by Greg Ward · 26 years ago
  68. b116e45 In 'link_shared_object()', try to be less sensitive to missing input files by Greg Ward · 26 years ago
  69. 8037cb1 Added 'output_dir' parameter to 'compile()' and 'link_shared_object(). by Greg Ward · 26 years ago
  70. c294113 Ditched '_gen_preprocess_options()' and '_gen_lib_options()' -- they're by Greg Ward · 26 years ago
  71. 65f4a3b Patch from Perry Stoll: caught up with changes in CCompiler necessary (?) by Greg Ward · 26 years ago
  72. 5e71744 Changed to use 'spawn()', now that it exists. by Greg Ward · 26 years ago
  73. 170bdc0 The first concrete subclass of CCompiler: defines a barebones Unix C compiler. by Greg Ward · 26 years ago