1. 05 Dec, 2003 1 commit
  2. 02 Dec, 2003 1 commit
  3. 28 Nov, 2003 1 commit
  4. 24 Oct, 2003 1 commit
  5. 20 Oct, 2003 1 commit
  6. 17 Jul, 2003 1 commit
  7. 27 Jun, 2003 1 commit
  8. 12 Jun, 2003 1 commit
  9. 01 Jun, 2003 1 commit
  10. 31 May, 2003 1 commit
  11. 14 May, 2003 1 commit
  12. 09 May, 2003 2 commits
  13. 24 Apr, 2003 1 commit
  14. 18 Apr, 2003 1 commit
    • Jason Tishler's avatar
      Patch #718049: Setting exe_extension for cygwin · 8e2d2f9f
      Jason Tishler authored
      On cygwin, the setup.py script uses unixccompiler.py for compiling and linking
      C extensions. The unixccompiler.py script assumes that executables do not get
      special extensions, which makes sense for Unix.  However, on Cygwin,
      executables get an .exe extension.
      
      This causes a problem during the configuration step (python setup.py config),
      in which some temporary executables may be generated. As unixccompiler.py does
      not know about the .exe extension, distutils fails to clean up after itself: it
      does not remove _configtest.exe but tries to remove _configtest instead.
      
      The attached patch to unixccompiler.py sets the correct exe_extension for
      cygwin by checking if sys.platform is 'cygwin'. With this patch, distutils
      cleans up after itself correctly.
      
      Michiel de Hoon
      University of Tokyo, Human Genome Center.
      8e2d2f9f
  15. 14 Apr, 2003 1 commit
    • Jason Tishler's avatar
      Patch #709178: remove -static option from cygwinccompiler · ac175fdb
      Jason Tishler authored
      After some more reflection (and no negative feedback), I am reverting the
      original patch and applying my version, cygwinccompiler.py-shared.diff,
      instead.
      
      My reasons are the following:
      
      1. support for older toolchains is retained
      2. support for new toolchains (i.e., ld -shared) is added
      
      The goal of my approach is to avoid breaking older toolchains while adding
      better support for newer ones.
      ac175fdb
  16. 09 Apr, 2003 3 commits
    • Jason Tishler's avatar
      Patch #718551: cygwinccompiler.get_versions() patch · 972516d3
      Jason Tishler authored
      The cygwinccompiler.get_versions() function only handles versions numbers of
      the form "x.y.z".  The attached patch enhances get_versions() to handle "x.y"
      too (i.e., the ".z" is optional).
      
      This change causes the unnecessary "--entry _DllMain@12" link option to be
      suppressed for recent Cygwin and Mingw toolchains. Additionally, it directs
      recent Mingw toolchains to use gcc instead of dllwrap during linking.
      972516d3
    • Jason Tishler's avatar
      Patch #709178: remove -static option from cygwinccompiler · 1942fa31
      Jason Tishler authored
      Currently, the cygwinccompiler.py compiler handling in
      distutils is invoking the cygwin and mingw compilers
      with the -static option.
      
      Logically, this means that the linker should choose to
      link to static libraries instead of shared/dynamically
      linked libraries.
      
      Current win32 binutils expect import libraries to have
      a .dll.a suffix and static libraries to have .a suffix.
      If -static is passed, it will skip the .dll.a
      libraries. This is pain if one has a tree with both
      static and dynamic libraries using this naming
      convention, and wish to use the dynamic libraries.
      
      The -static option being passed in distutils is to get
      around a bug in old versions of binutils where it would
      get confused when it found the DLLs themselves.
      
      The decision to use static or shared libraries is site
      or package specific, and should be left to the setup
      script or to command line options.
      1942fa31
    • Andrew M. Kuchling's avatar
  17. 03 Mar, 2003 3 commits
  18. 28 Feb, 2003 1 commit
  19. 26 Feb, 2003 1 commit
  20. 20 Feb, 2003 2 commits
  21. 19 Feb, 2003 3 commits
  22. 18 Feb, 2003 2 commits
  23. 10 Feb, 2003 1 commit
  24. 03 Feb, 2003 1 commit
  25. 31 Jan, 2003 1 commit
  26. 29 Jan, 2003 1 commit
  27. 27 Jan, 2003 1 commit
  28. 24 Jan, 2003 1 commit
  29. 06 Jan, 2003 1 commit
  30. 03 Jan, 2003 2 commits