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.

Author jhylton
Recipients
Date 2002-09-24.21:18:31
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
From: Andy Miller <amiller@juniper.net>
To: jeremy@alum.mit.edu
Subject: Bug in build_ext.py
Date: Tue, 10 Sep 2002 03:25:46 -0700

In the last CVS version of build_ext.py you changed the   
get_libraries function to read:

  if sys.platform == "win32":
     from distutils.msvccompiler import MSVCCompiler
     if not isinstance(self.compiler, MSVCCompiler):
         template = "python%d%d"

It also needs an else assocated with the "if not 
isinstance"         
   else:
       return ext.libraries 

Otherwise if an installer has defined their own
compiler (or is 
not using MSVC I suppose) then none of the libraries are 
passed to the link stage - I discovered this with the 
WxPython modules.  The previous version of build_ext used 
to fallout the bottom with the "return ext.libraries"
while with 
the current version you get a 'None' if Win32 and NOT MSVC

Cheers

Andy  

 
History
Date User Action Args
2007-08-23 14:05:55adminlinkissue614051 messages
2007-08-23 14:05:55admincreate