[issue2437] Distutils runtime_library_dirs broken on Windows

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 y

[issue2437] Distutils runtime_library_dirs broken on Windows

2014-07-09 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mai

[issue2437] Distutils runtime_library_dirs broken on Windows

2011-02-03 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- type: crash -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue2437] Distutils runtime_library_dirs broken on Windows

2010-08-21 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo, loewis versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue2437] Distutils runtime_library_dirs broken on Windows

2010-05-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.2 -Python 2.3, Python 3.0 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-03-01 Thread Bill Janssen
Bill Janssen added the comment: Tarek writes: > Laurent, right. but we need to figure out how to get the CC name in > MinGW/Cygwin environment. > I am not familiar with them. Since this bug is specifically about that environment, shouldn't it be handled by someone who is familiar with them?

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-03-01 Thread Bill Janssen
Bill Janssen added the comment: No, Tarek, I don't have a MinGW machine right now. But it should be easy to reproduce; just invoke that call I originally reported. The distutils code is just making assumptions that it shouldn't be making. ___ Python tracker

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-02-12 Thread Tarek Ziadé
Tarek Ziadé added the comment: Bill, do you have a example to reproduce the problem so I can write the test ? Laurent, right. but we need to figure out how to get the CC name in MinGW/Cygwin environment. I am not familiar with them. Does CC gets set in the environment ? if so we could use a si

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-02-11 Thread Roumen Petrov
Changes by Roumen Petrov : -- nosy: +rpetrov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue2437] Distutils runtime_library_dirs broken on Windows

2009-02-10 Thread Daniel Diniz
Changes by Daniel Diniz : -- assignee: -> tarek nosy: +tarek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue2437] Distutils runtime_library_dirs broken on Windows

2008-05-18 Thread Laurent Gautier
Laurent Gautier <[EMAIL PROTECTED]> added the comment: The bug is still here with Python 2.5.2. I anyone want to have it work urgently, there is a quick but very ugly fix: add g['CC'] = 'gcc' into the function _init_nt() in the file Lib\distutils\sysconfig.py of the Python install. --

[issue2437] Distutils runtime_library_dirs broken on Windows

2008-03-20 Thread Bill Janssen
New submission from Bill Janssen <[EMAIL PROTECTED]>: The distutils.unixcompiler.runtime_library_dirs() function, used when compiling with MinGW or Cygwin on Windows, fails catastrophically because the return result of sysconfig.get_config_var("CC") returns None. It should probably be prepared f

[issue2437] Distutils runtime_library_dirs broken on Windows

2008-03-20 Thread Bill Janssen
Changes by Bill Janssen <[EMAIL PROTECTED]>: -- components: +Distutils priority: -> high type: -> crash versions: +Python 2.3, Python 2.4, Python 2.5, Python 2.6, Python 3.0 __ Tracker <[EMAIL PROTECTED]> _