Merged revisions 73864 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73864 | tarek.ziade | 2009-07-06 14:50:46 +0200 (Mon, 06 Jul 2009) | 1 line

  Fixed #6377: distutils compiler switch ignored (and added a deprecation warning if compiler is not used as supposed = a string option)
........
This commit is contained in:
Tarek Ziadé 2009-07-06 13:52:17 +00:00
parent 47137250ff
commit dd07ebb44a
4 changed files with 119 additions and 67 deletions

View File

@ -7,6 +7,8 @@ extensions ASAP)."""
__revision__ = "$Id$" __revision__ = "$Id$"
import sys, os, re import sys, os, re
from warnings import warn
from distutils.core import Command from distutils.core import Command
from distutils.errors import * from distutils.errors import *
from distutils.sysconfig import customize_compiler, get_python_version from distutils.sysconfig import customize_compiler, get_python_version
@ -112,6 +114,35 @@ class build_ext(Command):
"list available compilers", show_compilers), "list available compilers", show_compilers),
] ]
# making 'compiler' a property to deprecate
# its usage as something else than a compiler type
# e.g. like a compiler instance
def __init__(self, dist):
self._compiler = None
Command.__init__(self, dist)
def __setattr__(self, name, value):
# need this to make sure setattr() (used in distutils)
# doesn't kill our property
if name == 'compiler':
self._set_compiler(value)
else:
self.__dict__[name] = value
def _set_compiler(self, compiler):
if not isinstance(compiler, str) and compiler is not None:
# we don't want to allow that anymore in the future
warn("'compiler' specify the compiler type in build_ext. "
"If you want to get the compiler object itself, "
"use 'compiler_obj'", PendingDeprecationWarning)
self._compiler = compiler
def _get_compiler(self):
return self._compiler
compiler = property(_get_compiler, _set_compiler)
def initialize_options(self): def initialize_options(self):
self.extensions = None self.extensions = None
self.build_lib = None self.build_lib = None
@ -310,38 +341,38 @@ class build_ext(Command):
# Setup the CCompiler object that we'll use to do all the # Setup the CCompiler object that we'll use to do all the
# compiling and linking # compiling and linking
self.compiler = new_compiler(compiler=None, self.compiler_obj = new_compiler(compiler=self.compiler,
verbose=self.verbose, verbose=self.verbose,
dry_run=self.dry_run, dry_run=self.dry_run,
force=self.force) force=self.force)
customize_compiler(self.compiler) customize_compiler(self.compiler_obj)
# If we are cross-compiling, init the compiler now (if we are not # If we are cross-compiling, init the compiler now (if we are not
# cross-compiling, init would not hurt, but people may rely on # cross-compiling, init would not hurt, but people may rely on
# late initialization of compiler even if they shouldn't...) # late initialization of compiler even if they shouldn't...)
if os.name == 'nt' and self.plat_name != get_platform(): if os.name == 'nt' and self.plat_name != get_platform():
self.compiler.initialize(self.plat_name) self.compiler_obj.initialize(self.plat_name)
# And make sure that any compile/link-related options (which might # And make sure that any compile/link-related options (which might
# come from the command-line or from the setup script) are set in # come from the command-line or from the setup script) are set in
# that CCompiler object -- that way, they automatically apply to # that CCompiler object -- that way, they automatically apply to
# all compiling and linking done here. # all compiling and linking done here.
if self.include_dirs is not None: if self.include_dirs is not None:
self.compiler.set_include_dirs(self.include_dirs) self.compiler_obj.set_include_dirs(self.include_dirs)
if self.define is not None: if self.define is not None:
# 'define' option is a list of (name,value) tuples # 'define' option is a list of (name,value) tuples
for (name, value) in self.define: for (name, value) in self.define:
self.compiler.define_macro(name, value) self.compiler_obj.define_macro(name, value)
if self.undef is not None: if self.undef is not None:
for macro in self.undef: for macro in self.undef:
self.compiler.undefine_macro(macro) self.compiler_obj.undefine_macro(macro)
if self.libraries is not None: if self.libraries is not None:
self.compiler.set_libraries(self.libraries) self.compiler_obj.set_libraries(self.libraries)
if self.library_dirs is not None: if self.library_dirs is not None:
self.compiler.set_library_dirs(self.library_dirs) self.compiler_obj.set_library_dirs(self.library_dirs)
if self.rpath is not None: if self.rpath is not None:
self.compiler.set_runtime_library_dirs(self.rpath) self.compiler_obj.set_runtime_library_dirs(self.rpath)
if self.link_objects is not None: if self.link_objects is not None:
self.compiler.set_link_objects(self.link_objects) self.compiler_obj.set_link_objects(self.link_objects)
# Now actually compile and link everything. # Now actually compile and link everything.
self.build_extensions() self.build_extensions()
@ -502,13 +533,13 @@ class build_ext(Command):
for undef in ext.undef_macros: for undef in ext.undef_macros:
macros.append((undef,)) macros.append((undef,))
objects = self.compiler.compile(sources, objects = self.compiler_obj.compile(sources,
output_dir=self.build_temp, output_dir=self.build_temp,
macros=macros, macros=macros,
include_dirs=ext.include_dirs, include_dirs=ext.include_dirs,
debug=self.debug, debug=self.debug,
extra_postargs=extra_args, extra_postargs=extra_args,
depends=ext.depends) depends=ext.depends)
# XXX -- this is a Vile HACK! # XXX -- this is a Vile HACK!
# #
@ -529,9 +560,9 @@ class build_ext(Command):
extra_args = ext.extra_link_args or [] extra_args = ext.extra_link_args or []
# Detect target language, if not provided # Detect target language, if not provided
language = ext.language or self.compiler.detect_language(sources) language = ext.language or self.compiler_obj.detect_language(sources)
self.compiler.link_shared_object( self.compiler_obj.link_shared_object(
objects, ext_path, objects, ext_path,
libraries=self.get_libraries(ext), libraries=self.get_libraries(ext),
library_dirs=ext.library_dirs, library_dirs=ext.library_dirs,
@ -698,7 +729,7 @@ class build_ext(Command):
# Append '_d' to the python import library on debug builds. # Append '_d' to the python import library on debug builds.
if sys.platform == "win32": if sys.platform == "win32":
from distutils.msvccompiler import MSVCCompiler from distutils.msvccompiler import MSVCCompiler
if not isinstance(self.compiler, MSVCCompiler): if not isinstance(self.compiler_obj, MSVCCompiler):
template = "python%d%d" template = "python%d%d"
if self.debug: if self.debug:
template = template + '_d' template = template + '_d'

View File

@ -3,6 +3,9 @@ import os
import tempfile import tempfile
import shutil import shutil
from io import StringIO from io import StringIO
import warnings
from test.support import check_warnings
from test.support import captured_stdout
from distutils.core import Extension, Distribution from distutils.core import Extension, Distribution
from distutils.command.build_ext import build_ext from distutils.command.build_ext import build_ext
@ -395,6 +398,17 @@ class BuildExtTestCase(TempdirManager,
wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap.so') wanted = os.path.join(curdir, 'twisted', 'runner', 'portmap.so')
self.assertEquals(wanted, path) self.assertEquals(wanted, path)
def test_compiler_deprecation_warning(self):
dist = Distribution()
cmd = build_ext(dist)
with check_warnings() as w:
warnings.simplefilter("always")
cmd.compiler = object()
self.assertEquals(len(w.warnings), 1)
cmd.compile = 'unix'
self.assertEquals(len(w.warnings), 1)
def test_suite(): def test_suite():
src = _get_source_filename() src = _get_source_filename()
if not os.path.exists(src): if not os.path.exists(src):

View File

@ -878,6 +878,9 @@ Core and Builtins
Library Library
------- -------
- Issue #6377: Enabled the compiler option, and deprecate its usage as an
attribute.
- Issue #6413: Fixed the log level in distutils.dist for announce. - Issue #6413: Fixed the log level in distutils.dist for announce.
- Issue #6403: Fixed package path usage in build_ext. - Issue #6403: Fixed package path usage in build_ext.

View File

@ -174,7 +174,7 @@ class PyBuildExt(build_ext):
if compiler is not None: if compiler is not None:
(ccshared,cflags) = sysconfig.get_config_vars('CCSHARED','CFLAGS') (ccshared,cflags) = sysconfig.get_config_vars('CCSHARED','CFLAGS')
args['compiler_so'] = compiler + ' ' + ccshared + ' ' + cflags args['compiler_so'] = compiler + ' ' + ccshared + ' ' + cflags
self.compiler.set_executables(**args) self.compiler_obj.set_executables(**args)
build_ext.build_extensions(self) build_ext.build_extensions(self)
@ -295,8 +295,8 @@ class PyBuildExt(build_ext):
def detect_modules(self): def detect_modules(self):
# Ensure that /usr/local is always used # Ensure that /usr/local is always used
add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') add_dir_to_list(self.compiler_obj.library_dirs, '/usr/local/lib')
add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') add_dir_to_list(self.compiler_obj.include_dirs, '/usr/local/include')
# Add paths specified in the environment variables LDFLAGS and # Add paths specified in the environment variables LDFLAGS and
# CPPFLAGS for header and library files. # CPPFLAGS for header and library files.
@ -305,9 +305,9 @@ class PyBuildExt(build_ext):
# the environment variable is not set even though the value were passed # the environment variable is not set even though the value were passed
# into configure and stored in the Makefile (issue found on OS X 10.3). # into configure and stored in the Makefile (issue found on OS X 10.3).
for env_var, arg_name, dir_list in ( for env_var, arg_name, dir_list in (
('LDFLAGS', '-R', self.compiler.runtime_library_dirs), ('LDFLAGS', '-R', self.compiler_obj.runtime_library_dirs),
('LDFLAGS', '-L', self.compiler.library_dirs), ('LDFLAGS', '-L', self.compiler_obj.library_dirs),
('CPPFLAGS', '-I', self.compiler.include_dirs)): ('CPPFLAGS', '-I', self.compiler_obj.include_dirs)):
env_val = sysconfig.get_config_var(env_var) env_val = sysconfig.get_config_var(env_var)
if env_val: if env_val:
# To prevent optparse from raising an exception about any # To prevent optparse from raising an exception about any
@ -333,19 +333,19 @@ class PyBuildExt(build_ext):
add_dir_to_list(dir_list, directory) add_dir_to_list(dir_list, directory)
if os.path.normpath(sys.prefix) != '/usr': if os.path.normpath(sys.prefix) != '/usr':
add_dir_to_list(self.compiler.library_dirs, add_dir_to_list(self.compiler_obj.library_dirs,
sysconfig.get_config_var("LIBDIR")) sysconfig.get_config_var("LIBDIR"))
add_dir_to_list(self.compiler.include_dirs, add_dir_to_list(self.compiler_obj.include_dirs,
sysconfig.get_config_var("INCLUDEDIR")) sysconfig.get_config_var("INCLUDEDIR"))
# lib_dirs and inc_dirs are used to search for files; # lib_dirs and inc_dirs are used to search for files;
# if a file is found in one of those directories, it can # if a file is found in one of those directories, it can
# be assumed that no additional -I,-L directives are needed. # be assumed that no additional -I,-L directives are needed.
lib_dirs = self.compiler.library_dirs + [ lib_dirs = self.compiler_obj.library_dirs + [
'/lib64', '/usr/lib64', '/lib64', '/usr/lib64',
'/lib', '/usr/lib', '/lib', '/usr/lib',
] ]
inc_dirs = self.compiler.include_dirs + ['/usr/include'] inc_dirs = self.compiler_obj.include_dirs + ['/usr/include']
exts = [] exts = []
missing = [] missing = []
@ -493,7 +493,7 @@ class PyBuildExt(build_ext):
exts.append( Extension('audioop', ['audioop.c']) ) exts.append( Extension('audioop', ['audioop.c']) )
# readline # readline
do_readline = self.compiler.find_library_file(lib_dirs, 'readline') do_readline = self.compiler_obj.find_library_file(lib_dirs, 'readline')
if platform == 'darwin': # and os.uname()[2] < '9.': if platform == 'darwin': # and os.uname()[2] < '9.':
# MacOSX 10.4 has a broken readline. Don't try to build # MacOSX 10.4 has a broken readline. Don't try to build
# the readline module unless the user has installed a fixed # the readline module unless the user has installed a fixed
@ -514,17 +514,17 @@ class PyBuildExt(build_ext):
readline_extra_link_args = () readline_extra_link_args = ()
readline_libs = ['readline'] readline_libs = ['readline']
if self.compiler.find_library_file(lib_dirs, if self.compiler_obj.find_library_file(lib_dirs,
'ncursesw'): 'ncursesw'):
readline_libs.append('ncursesw') readline_libs.append('ncursesw')
elif self.compiler.find_library_file(lib_dirs, elif self.compiler_obj.find_library_file(lib_dirs,
'ncurses'): 'ncurses'):
readline_libs.append('ncurses') readline_libs.append('ncurses')
elif self.compiler.find_library_file(lib_dirs, 'curses'): elif self.compiler_obj.find_library_file(lib_dirs, 'curses'):
readline_libs.append('curses') readline_libs.append('curses')
elif self.compiler.find_library_file(lib_dirs + elif self.compiler_obj.find_library_file(lib_dirs +
['/usr/lib/termcap'], ['/usr/lib/termcap'],
'termcap'): 'termcap'):
readline_libs.append('termcap') readline_libs.append('termcap')
exts.append( Extension('readline', ['readline.c'], exts.append( Extension('readline', ['readline.c'],
library_dirs=['/usr/lib/termcap'], library_dirs=['/usr/lib/termcap'],
@ -536,7 +536,7 @@ class PyBuildExt(build_ext):
if platform not in ['mac']: if platform not in ['mac']:
# crypt module. # crypt module.
if self.compiler.find_library_file(lib_dirs, 'crypt'): if self.compiler_obj.find_library_file(lib_dirs, 'crypt'):
libs = ['crypt'] libs = ['crypt']
else: else:
libs = [] libs = []
@ -563,7 +563,7 @@ class PyBuildExt(build_ext):
['/usr/kerberos/include']) ['/usr/kerberos/include'])
if krb5_h: if krb5_h:
ssl_incs += krb5_h ssl_incs += krb5_h
ssl_libs = find_library_file(self.compiler, 'ssl',lib_dirs, ssl_libs = find_library_file(self.compiler_obj, 'ssl',lib_dirs,
['/usr/local/ssl/lib', ['/usr/local/ssl/lib',
'/usr/contrib/ssl/lib/' '/usr/contrib/ssl/lib/'
] ) ] )
@ -677,7 +677,7 @@ class PyBuildExt(build_ext):
os.path.join(sqlite_incdir, '..', '..', 'lib64'), os.path.join(sqlite_incdir, '..', '..', 'lib64'),
os.path.join(sqlite_incdir, '..', '..', 'lib'), os.path.join(sqlite_incdir, '..', '..', 'lib'),
] ]
sqlite_libfile = self.compiler.find_library_file( sqlite_libfile = self.compiler_obj.find_library_file(
sqlite_dirs_to_check + lib_dirs, 'sqlite3') sqlite_dirs_to_check + lib_dirs, 'sqlite3')
if sqlite_libfile: if sqlite_libfile:
sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))] sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))]
@ -736,7 +736,8 @@ class PyBuildExt(build_ext):
if cand == "ndbm": if cand == "ndbm":
if find_file("ndbm.h", inc_dirs, []) is not None: if find_file("ndbm.h", inc_dirs, []) is not None:
# Some systems have -lndbm, others don't # Some systems have -lndbm, others don't
if self.compiler.find_library_file(lib_dirs, 'ndbm'): if self.compiler_obj.find_library_file(lib_dirs,
'ndbm'):
ndbm_libs = ['ndbm'] ndbm_libs = ['ndbm']
else: else:
ndbm_libs = [] ndbm_libs = []
@ -749,9 +750,10 @@ class PyBuildExt(build_ext):
break break
elif cand == "gdbm": elif cand == "gdbm":
if self.compiler.find_library_file(lib_dirs, 'gdbm'): if self.compiler_obj.find_library_file(lib_dirs, 'gdbm'):
gdbm_libs = ['gdbm'] gdbm_libs = ['gdbm']
if self.compiler.find_library_file(lib_dirs, 'gdbm_compat'): if self.compiler_obj.find_library_file(lib_dirs,
'gdbm_compat'):
gdbm_libs.append('gdbm_compat') gdbm_libs.append('gdbm_compat')
if find_file("gdbm/ndbm.h", inc_dirs, []) is not None: if find_file("gdbm/ndbm.h", inc_dirs, []) is not None:
print("building dbm using gdbm") print("building dbm using gdbm")
@ -778,7 +780,7 @@ class PyBuildExt(build_ext):
missing.append('_dbm') missing.append('_dbm')
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm: # Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
if (self.compiler.find_library_file(lib_dirs, 'gdbm')): if (self.compiler_obj.find_library_file(lib_dirs, 'gdbm')):
exts.append( Extension('_gdbm', ['_gdbmmodule.c'], exts.append( Extension('_gdbm', ['_gdbmmodule.c'],
libraries = ['gdbm'] ) ) libraries = ['gdbm'] ) )
else: else:
@ -796,7 +798,7 @@ class PyBuildExt(build_ext):
# Sun yellow pages. Some systems have the functions in libc. # Sun yellow pages. Some systems have the functions in libc.
if platform not in ['cygwin', 'atheos', 'qnx6']: if platform not in ['cygwin', 'atheos', 'qnx6']:
if (self.compiler.find_library_file(lib_dirs, 'nsl')): if (self.compiler_obj.find_library_file(lib_dirs, 'nsl')):
libs = ['nsl'] libs = ['nsl']
else: else:
libs = [] libs = []
@ -810,24 +812,24 @@ class PyBuildExt(build_ext):
# Curses support, requiring the System V version of curses, often # Curses support, requiring the System V version of curses, often
# provided by the ncurses library. # provided by the ncurses library.
panel_library = 'panel' panel_library = 'panel'
if (self.compiler.find_library_file(lib_dirs, 'ncursesw')): if (self.compiler_obj.find_library_file(lib_dirs, 'ncursesw')):
curses_libs = ['ncursesw'] curses_libs = ['ncursesw']
# Bug 1464056: If _curses.so links with ncursesw, # Bug 1464056: If _curses.so links with ncursesw,
# _curses_panel.so must link with panelw. # _curses_panel.so must link with panelw.
panel_library = 'panelw' panel_library = 'panelw'
exts.append( Extension('_curses', ['_cursesmodule.c'], exts.append( Extension('_curses', ['_cursesmodule.c'],
libraries = curses_libs) ) libraries = curses_libs) )
elif (self.compiler.find_library_file(lib_dirs, 'ncurses')): elif (self.compiler_obj.find_library_file(lib_dirs, 'ncurses')):
curses_libs = ['ncurses'] curses_libs = ['ncurses']
exts.append( Extension('_curses', ['_cursesmodule.c'], exts.append( Extension('_curses', ['_cursesmodule.c'],
libraries = curses_libs) ) libraries = curses_libs) )
elif (self.compiler.find_library_file(lib_dirs, 'curses') elif (self.compiler_obj.find_library_file(lib_dirs, 'curses')
and platform != 'darwin'): and platform != 'darwin'):
# OSX has an old Berkeley curses, not good enough for # OSX has an old Berkeley curses, not good enough for
# the _curses module. # the _curses module.
if (self.compiler.find_library_file(lib_dirs, 'terminfo')): if (self.compiler_obj.find_library_file(lib_dirs, 'terminfo')):
curses_libs = ['curses', 'terminfo'] curses_libs = ['curses', 'terminfo']
elif (self.compiler.find_library_file(lib_dirs, 'termcap')): elif (self.compiler_obj.find_library_file(lib_dirs, 'termcap')):
curses_libs = ['curses', 'termcap'] curses_libs = ['curses', 'termcap']
else: else:
curses_libs = ['curses'] curses_libs = ['curses']
@ -839,7 +841,7 @@ class PyBuildExt(build_ext):
# If the curses module is enabled, check for the panel module # If the curses module is enabled, check for the panel module
if (module_enabled(exts, '_curses') and if (module_enabled(exts, '_curses') and
self.compiler.find_library_file(lib_dirs, panel_library)): self.compiler_obj.find_library_file(lib_dirs, panel_library)):
exts.append( Extension('_curses_panel', ['_curses_panel.c'], exts.append( Extension('_curses_panel', ['_curses_panel.c'],
libraries = [panel_library] + curses_libs) ) libraries = [panel_library] + curses_libs) )
else: else:
@ -872,7 +874,7 @@ class PyBuildExt(build_ext):
version = line.split()[2] version = line.split()[2]
break break
if version >= version_req: if version >= version_req:
if (self.compiler.find_library_file(lib_dirs, 'z')): if (self.compiler_obj.find_library_file(lib_dirs, 'z')):
if sys.platform == "darwin": if sys.platform == "darwin":
zlib_extra_link_args = ('-Wl,-search_paths_first',) zlib_extra_link_args = ('-Wl,-search_paths_first',)
else: else:
@ -904,7 +906,7 @@ class PyBuildExt(build_ext):
extra_link_args = extra_link_args) ) extra_link_args = extra_link_args) )
# Gustavo Niemeyer's bz2 module. # Gustavo Niemeyer's bz2 module.
if (self.compiler.find_library_file(lib_dirs, 'bz2')): if (self.compiler_obj.find_library_file(lib_dirs, 'bz2')):
if sys.platform == "darwin": if sys.platform == "darwin":
bz2_extra_link_args = ('-Wl,-search_paths_first',) bz2_extra_link_args = ('-Wl,-search_paths_first',)
else: else:
@ -1130,8 +1132,10 @@ class PyBuildExt(build_ext):
tcllib = tklib = tcl_includes = tk_includes = None tcllib = tklib = tcl_includes = tk_includes = None
for version in ['8.5', '85', '8.4', '84', '8.3', '83', '8.2', for version in ['8.5', '85', '8.4', '84', '8.3', '83', '8.2',
'82', '8.1', '81', '8.0', '80']: '82', '8.1', '81', '8.0', '80']:
tklib = self.compiler.find_library_file(lib_dirs, 'tk' + version) tklib = self.compiler_obj.find_library_file(lib_dirs,
tcllib = self.compiler.find_library_file(lib_dirs, 'tcl' + version) 'tk' + version)
tcllib = self.compiler_obj.find_library_file(lib_dirs,
'tcl' + version)
if tklib and tcllib: if tklib and tcllib:
# Exit the loop when we've found the Tcl/Tk libraries # Exit the loop when we've found the Tcl/Tk libraries
break break
@ -1189,12 +1193,12 @@ class PyBuildExt(build_ext):
return return
# Check for BLT extension # Check for BLT extension
if self.compiler.find_library_file(lib_dirs + added_lib_dirs, if self.compiler_obj.find_library_file(lib_dirs + added_lib_dirs,
'BLT8.0'): 'BLT8.0'):
defs.append( ('WITH_BLT', 1) ) defs.append( ('WITH_BLT', 1) )
libs.append('BLT8.0') libs.append('BLT8.0')
elif self.compiler.find_library_file(lib_dirs + added_lib_dirs, elif self.compiler_obj.find_library_file(lib_dirs + added_lib_dirs,
'BLT'): 'BLT'):
defs.append( ('WITH_BLT', 1) ) defs.append( ('WITH_BLT', 1) )
libs.append('BLT') libs.append('BLT')
@ -1248,7 +1252,7 @@ class PyBuildExt(build_ext):
]] ]]
# Add .S (preprocessed assembly) to C compiler source extensions. # Add .S (preprocessed assembly) to C compiler source extensions.
self.compiler.src_extensions.append('.S') self.compiler_obj.src_extensions.append('.S')
include_dirs = [os.path.join(ffi_srcdir, 'include'), include_dirs = [os.path.join(ffi_srcdir, 'include'),
os.path.join(ffi_srcdir, 'powerpc')] os.path.join(ffi_srcdir, 'powerpc')]
@ -1298,7 +1302,7 @@ class PyBuildExt(build_ext):
ffi_srcdir = os.path.join(fficonfig['ffi_srcdir'], 'src') ffi_srcdir = os.path.join(fficonfig['ffi_srcdir'], 'src')
# Add .S (preprocessed assembly) to C compiler source extensions. # Add .S (preprocessed assembly) to C compiler source extensions.
self.compiler.src_extensions.append('.S') self.compiler_obj.src_extensions.append('.S')
include_dirs = [os.path.join(ffi_builddir, 'include'), include_dirs = [os.path.join(ffi_builddir, 'include'),
ffi_builddir, ffi_srcdir] ffi_builddir, ffi_srcdir]
@ -1376,7 +1380,7 @@ class PyBuildExt(build_ext):
ffi_lib = None ffi_lib = None
if ffi_inc is not None: if ffi_inc is not None:
for lib_name in ('ffi_convenience', 'ffi_pic', 'ffi'): for lib_name in ('ffi_convenience', 'ffi_pic', 'ffi'):
if (self.compiler.find_library_file(lib_dirs, lib_name)): if (self.compiler_obj.find_library_file(lib_dirs, lib_name)):
ffi_lib = lib_name ffi_lib = lib_name
break break