[issue2445] Use The CygwinCCompiler Under Cygwin

2021-02-03 Thread Steve Dower
Steve Dower added the comment: Distutils is now deprecated (see PEP 632) and all tagged issues are being closed. From now until removal, only release blocking issues will be considered for distutils. If this issue does not relate to distutils, please remove the component and reopen it. If

[issue2445] Use The CygwinCCompiler Under Cygwin

2017-10-26 Thread Erik Bray
Change by Erik Bray : -- pull_requests: +4099 stage: commit review -> patch review ___ Python tracker ___

[issue2445] Use The CygwinCCompiler Under Cygwin

2016-08-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue2445] Use The CygwinCCompiler Under Cygwin

2016-08-30 Thread David Stanek
Changes by David Stanek : -- nosy: -dstanek ___ Python tracker ___ ___ Python-bugs-list

[issue2445] Use The CygwinCCompiler Under Cygwin

2016-08-30 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: -christian.heimes ___ Python tracker ___ ___

[issue2445] Use The CygwinCCompiler Under Cygwin

2016-08-30 Thread Erik Bray
Erik Bray added the comment: I have confirmed Masayuki's patch (3.4-distutils-shlibext.patch) fixes a few build issues on Cygwin. At its core, what it's fixing is allowing UnixCCompiler.find_library_file to find import libraries on Cygwin. That in turn is necessary for --with-system-ffi to

[issue2445] Use The CygwinCCompiler Under Cygwin

2015-04-20 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: CygwinCCompiler seems legacy code. In v3.4 latest rivision, Distutils has made to work that is a patching to UnixCCompiler. So, I have a think that doesn't need to use CygwinCCompiler to build on Cygwin. I have upload a patch for UnixCCompiler. The patch

[issue2445] Use The CygwinCCompiler Under Cygwin

2014-08-29 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - patch review versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2445 ___

[issue2445] Use The CygwinCCompiler Under Cygwin

2014-07-09 Thread Mark Lawrence
Mark Lawrence added the comment: From msg194383 issues #18633, #18634 and #18654 are linked to this so is anybody up for providing a patch so that we can take this forward. See also #4032. -- nosy: +BreamoreBoy ___ Python tracker

[issue2445] Use The CygwinCCompiler Under Cygwin

2013-08-04 Thread Roumen Petrov
Roumen Petrov added the comment: Hi, Now issue18654 modernize mingwcygwin compiler classes contain enhancement that could be reused by this issue: patch 0007-MINGW-compiler-cygwin-provides-its-own-C-runtime.patch from archive , i.e. lets avoid change in get_msvcr() that return. Mingw is

[issue2445] Use The CygwinCCompiler Under Cygwin

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo mer...@netwok.org: -- nosy: +eric.araujo versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2445 ___ ___

[issue2445] Use The CygwinCCompiler Under Cygwin

2010-03-18 Thread Bill Janssen
Bill Janssen bill.jans...@gmail.com added the comment: Shouldn't the import library name end with .lib? I've run up against this building PyLucene with MinGW. There seems to be code to figure this out already in CygwinCCompiler, but it's commented out (and arguably incomplete). --

[issue2445] Use The CygwinCCompiler Under Cygwin

2009-02-06 Thread Tarek Ziadé
Changes by Tarek Ziadé ziade.ta...@gmail.com: -- assignee: - tarek nosy: +tarek versions: +Python 2.7, Python 3.1 -Python 2.6, Python 3.0 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2445

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-09-24 Thread Roumen Petrov
Roumen Petrov [EMAIL PROTECTED] added the comment: May be check for compiler.compiler_type (from sysconfig.py ) has to be replaced with a check for descendant classes of UnixCCompiler, i.e. to include mingw32 too ? Also CygwinCCompiler __init__ has to be reviewed too. As example : -

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-09-24 Thread Roumen Petrov
Roumen Petrov [EMAIL PROTECTED] added the comment: P.S. : about: static_lib_extension = .dll.a - it is suffix for import library and unixccompiler.py.diff patch from issue1706863 propose dylib_lib_extension = .dll.a . ___ Python tracker [EMAIL PROTECTED]

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-09-24 Thread Roumen Petrov
Roumen Petrov [EMAIL PROTECTED] added the comment: I forgot an another issue in CygwinCCompiler __init__: if gcc isn't version 2.91.57 then method will set dll_libraries to result of get_msvcr(), but the result may be is None. In this case link method fail on the line

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-09-23 Thread Hirokazu Yamamoto
Hirokazu Yamamoto [EMAIL PROTECTED] added the comment: # I found this infomation via svn blame According to issue403947, cygwin once used CygwinCCompiler, and problem was there, swiched to UnixCCompier. (r19674) If this issue is not solved yet, maybe it's not good to go back to

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-05-19 Thread Jeevan Varshney
Jeevan Varshney [EMAIL PROTECTED] added the comment: The following will also let environment variables be passed to the CygwinCCompiler. --- orig/sysconfig.py 2008-05-19 00:26:03.953125000 -0700 +++ copy/sysconfig.py 2008-05-19 00:14:51.609375000 -0700 @@ -145,7 +145,7 @@ Mainly needed

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-03-21 Thread David Stanek
Changes by David Stanek [EMAIL PROTECTED]: -- type: - compile error __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2445 __ ___ Python-bugs-list mailing list

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-03-21 Thread Christian Heimes
Christian Heimes [EMAIL PROTECTED] added the comment: The patch contains lots of unrelated changes. Can you please provide a clean patch and some doc updates? The rest looks fine to me. -- nosy: +tiran priority: - high resolution: - accepted versions: +Python 3.0

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-03-21 Thread David Stanek
David Stanek [EMAIL PROTECTED] added the comment: As Christian suggested I removed the unrelated svn:ignore changes. Added file: http://bugs.python.org/file9804/cygwin-smaller.diff __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2445

[issue2445] Use The CygwinCCompiler Under Cygwin

2008-03-21 Thread David Stanek
Changes by David Stanek [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file9803/cygwin.diff __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2445 __ ___ Python-bugs-list