Issue7131
Created on 2009-10-14 19:18 by dieterv, last changed 2009-10-26 22:10 by tarek.
|
msg94014 - (view) |
Author: Dieter Verfaillie (dieterv) |
Date: 2009-10-14 19:18 |
|
Using Python 2.6.3 on Windows XP, distutils fails building an extension
module when mingw32 is specified as the compiler. Distutils fails with
the error message "Unable to find vcvarsall.bat".
Looking back in the subversion history for the distutils build_ext
command
(Lib/distutils/command/build_ext.py?view=log)">http://svn.python.org/view/python/tags/r263/Lib/distutils/command/build_ext.py?view=log)
I've found that line 306 has been changed in revision 72594 to read:
self.compiler = new_compiler(compiler=None,
reverting back to revision 72586, so the code reads:
self.compiler = new_compiler(compiler=self.compiler,
seems to fix the problem.
|
|
msg94521 - (view) |
Author: Tarek Ziadé (tarek) |
Date: 2009-10-26 22:10 |
|
Thanks for the feedback, this was detected as a regression and fixed in
the upcoming 2.6.4
|
|
| Date |
User |
Action |
Args |
| 2009-10-26 22:10:38 | tarek | set | status: open -> closed resolution: duplicate messages:
+ msg94521
|
| 2009-10-14 19:18:42 | dieterv | create | |
|