This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: distutils/mingw32 links to dbg libs
Type: Stage:
Components: Distutils Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: ghaering Nosy List: akuchling, ghaering, nnorwitz
Priority: normal Keywords:

Created on 2001-08-22 04:30 by ghaering, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (5)
msg6130 - (view) Author: Gerhard Häring (ghaering) * (Python committer) Date: 2001-08-22 04:30
When compiling extension modules on Windows with
debugging enabled for the native mode of the GNU
compilers ("--compiler=mingw32 --debug"), distutils
tries to link with the debugging version of the
libraries (python21_d.dll, ...). This may be useful for
Microsoft Visual C++, but for the GNU compilers, it
isn't. GNU tools have a different debugging symbol
format than MS tools, so there's no point in doing this.
msg6131 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2001-09-04 19:56
Logged In: YES 
user_id=11375

Hmm... I can't see any code in cygwinccompiler.py that 
adds the _d prefix in the current CVS.  Can you please 
track down the code that adds it, and submit a patch to 
fix the problem?

msg6132 - (view) Author: Gerhard Häring (ghaering) * (Python committer) Date: 2001-09-19 03:30
Logged In: YES 
user_id=163326

OK, see patch #462754.
msg6133 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2003-02-07 22:34
Logged In: YES 
user_id=33168

Gerhard, is this still a problem?  Can this be closed?
msg6134 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2004-06-07 14:24
Logged In: YES 
user_id=11375

Closing this bug; there's been no discussion in over a year.
History
Date User Action Args
2022-04-10 16:04:21adminsetgithub: 35027
2001-08-22 04:30:03ghaeringcreate