1999-08-14 20:57:49 -03:00
|
|
|
"""distutils.command.build_ext
|
|
|
|
|
|
|
|
Implements the Distutils 'build_ext' command, for building extension
|
|
|
|
modules (currently limited to C extensions, should accomodate C++
|
|
|
|
extensions ASAP)."""
|
|
|
|
|
|
|
|
# created 1999/08/09, Greg Ward
|
|
|
|
|
2000-03-01 21:49:45 -04:00
|
|
|
__revision__ = "$Id$"
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
import sys, os, string, re
|
|
|
|
from types import *
|
|
|
|
from distutils.core import Command
|
|
|
|
from distutils.errors import *
|
|
|
|
|
|
|
|
|
1999-09-21 15:27:12 -03:00
|
|
|
# An extension name is just a dot-separated list of Python NAMEs (ie.
|
|
|
|
# the same as a fully-qualified module name).
|
|
|
|
extension_name_re = re.compile \
|
|
|
|
(r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$')
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
|
2000-02-17 20:13:53 -04:00
|
|
|
class build_ext (Command):
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-01-30 14:34:15 -04:00
|
|
|
description = "build C/C++ extensions (compile/link to build directory)"
|
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
# XXX thoughts on how to deal with complex command-line options like
|
|
|
|
# these, i.e. how to make it so fancy_getopt can suck them off the
|
|
|
|
# command line and make it look like setup.py defined the appropriate
|
|
|
|
# lists of tuples of what-have-you.
|
|
|
|
# - each command needs a callback to process its command-line options
|
|
|
|
# - Command.__init__() needs access to its share of the whole
|
|
|
|
# command line (must ultimately come from
|
|
|
|
# Distribution.parse_command_line())
|
|
|
|
# - it then calls the current command class' option-parsing
|
|
|
|
# callback to deal with weird options like -D, which have to
|
|
|
|
# parse the option text and churn out some custom data
|
|
|
|
# structure
|
|
|
|
# - that data structure (in this case, a list of 2-tuples)
|
|
|
|
# will then be present in the command object by the time
|
2000-02-17 20:35:22 -04:00
|
|
|
# we get to finalize_options() (i.e. the constructor
|
1999-08-14 20:57:49 -03:00
|
|
|
# takes care of both command-line and client options
|
2000-02-17 20:35:22 -04:00
|
|
|
# in between initialize_options() and finalize_options())
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-02-17 20:25:39 -04:00
|
|
|
user_options = [
|
2000-02-29 21:43:28 -04:00
|
|
|
('build-lib=', 'b',
|
2000-02-17 20:25:39 -04:00
|
|
|
"directory for compiled extension modules"),
|
2000-02-29 21:43:28 -04:00
|
|
|
('build-temp=', 't',
|
|
|
|
"directory for temporary files (build by-products)"),
|
|
|
|
('inplace', 'i',
|
|
|
|
"ignore build-lib and put compiled extensions into the source" +
|
|
|
|
"directory alongside your pure Python modules"),
|
2000-02-17 20:25:39 -04:00
|
|
|
('include-dirs=', 'I',
|
|
|
|
"list of directories to search for header files"),
|
|
|
|
('define=', 'D',
|
|
|
|
"C preprocessor macros to define"),
|
|
|
|
('undef=', 'U',
|
|
|
|
"C preprocessor macros to undefine"),
|
2000-03-26 17:45:14 -04:00
|
|
|
('libraries=', 'l',
|
2000-02-17 20:25:39 -04:00
|
|
|
"external C libraries to link with"),
|
|
|
|
('library-dirs=', 'L',
|
|
|
|
"directories to search for external C libraries"),
|
|
|
|
('rpath=', 'R',
|
|
|
|
"directories to search for shared C libraries at runtime"),
|
|
|
|
('link-objects=', 'O',
|
|
|
|
"extra explicit link objects to include in the link"),
|
|
|
|
('debug', 'g',
|
|
|
|
"compile/link with debugging information"),
|
2000-04-09 21:19:42 -03:00
|
|
|
('force', 'f',
|
|
|
|
"forcibly build everything (ignore file timestamps"),
|
2000-02-17 20:25:39 -04:00
|
|
|
]
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
|
2000-02-17 20:35:22 -04:00
|
|
|
def initialize_options (self):
|
1999-09-07 23:42:30 -03:00
|
|
|
self.extensions = None
|
2000-02-29 21:43:28 -04:00
|
|
|
self.build_lib = None
|
|
|
|
self.build_temp = None
|
|
|
|
self.inplace = 0
|
1999-09-13 10:55:34 -03:00
|
|
|
self.package = None
|
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
self.include_dirs = None
|
|
|
|
self.define = None
|
|
|
|
self.undef = None
|
2000-03-26 17:45:14 -04:00
|
|
|
self.libraries = None
|
1999-08-14 20:57:49 -03:00
|
|
|
self.library_dirs = None
|
|
|
|
self.rpath = None
|
|
|
|
self.link_objects = None
|
2000-02-08 22:20:14 -04:00
|
|
|
self.debug = None
|
2000-04-09 21:19:42 -03:00
|
|
|
self.force = None
|
1999-08-14 20:57:49 -03:00
|
|
|
|
1999-09-29 09:49:35 -03:00
|
|
|
|
2000-02-17 20:35:22 -04:00
|
|
|
def finalize_options (self):
|
2000-01-30 14:34:15 -04:00
|
|
|
from distutils import sysconfig
|
|
|
|
|
2000-02-08 22:20:14 -04:00
|
|
|
self.set_undefined_options ('build',
|
2000-02-29 21:43:28 -04:00
|
|
|
('build_lib', 'build_lib'),
|
|
|
|
('build_temp', 'build_temp'),
|
2000-04-09 21:19:42 -03:00
|
|
|
('debug', 'debug'),
|
|
|
|
('force', 'force'))
|
1999-08-14 20:57:49 -03:00
|
|
|
|
1999-09-13 10:55:34 -03:00
|
|
|
if self.package is None:
|
1999-09-21 15:27:12 -03:00
|
|
|
self.package = self.distribution.ext_package
|
|
|
|
|
|
|
|
self.extensions = self.distribution.ext_modules
|
|
|
|
|
1999-09-13 10:55:34 -03:00
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
# Make sure Python's include directories (for Python.h, config.h,
|
2000-04-13 21:50:49 -03:00
|
|
|
# etc.) are in the include search path.
|
|
|
|
py_include = sysconfig.get_python_inc()
|
|
|
|
plat_py_include = sysconfig.get_python_inc(plat_specific=1)
|
1999-08-14 20:57:49 -03:00
|
|
|
if self.include_dirs is None:
|
1999-09-21 15:27:12 -03:00
|
|
|
self.include_dirs = self.distribution.include_dirs or []
|
1999-09-29 09:49:35 -03:00
|
|
|
if type (self.include_dirs) is StringType:
|
|
|
|
self.include_dirs = string.split (self.include_dirs,
|
|
|
|
os.pathsep)
|
|
|
|
|
2000-03-29 00:13:49 -04:00
|
|
|
# Put the Python "system" include dir at the end, so that
|
|
|
|
# any local include dirs take precedence.
|
|
|
|
self.include_dirs.append (py_include)
|
2000-04-13 21:50:49 -03:00
|
|
|
if plat_py_include != py_include:
|
|
|
|
self.include_dirs.append (plat_py_include)
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-03-26 17:45:14 -04:00
|
|
|
if type (self.libraries) is StringType:
|
|
|
|
self.libraries = [self.libraries]
|
2000-03-18 11:21:03 -04:00
|
|
|
|
2000-03-30 23:50:23 -04:00
|
|
|
# Life is easier if we're not forever checking for None, so
|
|
|
|
# simplify these options to empty lists if unset
|
|
|
|
if self.libraries is None:
|
|
|
|
self.libraries = []
|
|
|
|
if self.library_dirs is None:
|
|
|
|
self.library_dirs = []
|
|
|
|
if self.rpath is None:
|
|
|
|
self.rpath = []
|
2000-02-04 22:23:16 -04:00
|
|
|
|
2000-03-30 23:50:23 -04:00
|
|
|
# for extensions under windows use different directories
|
|
|
|
# for Release and Debug builds.
|
|
|
|
# also Python's library directory must be appended to library_dirs
|
|
|
|
if os.name == 'nt':
|
|
|
|
self.library_dirs.append (os.path.join(sys.exec_prefix, 'libs'))
|
|
|
|
if self.debug:
|
|
|
|
self.build_temp = os.path.join (self.build_temp, "Debug")
|
|
|
|
else:
|
|
|
|
self.build_temp = os.path.join (self.build_temp, "Release")
|
2000-02-17 20:35:22 -04:00
|
|
|
# finalize_options ()
|
2000-02-04 22:23:16 -04:00
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
def run (self):
|
|
|
|
|
2000-01-30 14:34:15 -04:00
|
|
|
from distutils.ccompiler import new_compiler
|
|
|
|
|
1999-09-07 23:42:30 -03:00
|
|
|
# 'self.extensions', as supplied by setup.py, is a list of 2-tuples.
|
1999-08-14 20:57:49 -03:00
|
|
|
# Each tuple is simple:
|
|
|
|
# (ext_name, build_info)
|
|
|
|
# build_info is a dictionary containing everything specific to
|
|
|
|
# building this extension. (Info pertaining to all extensions
|
|
|
|
# should be handled by general distutils options passed from
|
|
|
|
# setup.py down to right here, but that's not taken care of yet.)
|
|
|
|
|
1999-09-07 23:42:30 -03:00
|
|
|
if not self.extensions:
|
|
|
|
return
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-03-26 17:45:14 -04:00
|
|
|
# If we were asked to build any C/C++ libraries, make sure that the
|
|
|
|
# directory where we put them is in the library search path for
|
|
|
|
# linking extensions.
|
2000-03-28 22:13:09 -04:00
|
|
|
if self.distribution.has_c_libraries():
|
2000-03-26 17:45:14 -04:00
|
|
|
build_clib = self.find_peer ('build_clib')
|
|
|
|
self.libraries.extend (build_clib.get_library_names() or [])
|
|
|
|
self.library_dirs.append (build_clib.build_clib)
|
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
# Setup the CCompiler object that we'll use to do all the
|
|
|
|
# compiling and linking
|
2000-03-21 20:11:21 -04:00
|
|
|
self.compiler = new_compiler (verbose=self.verbose,
|
1999-10-03 18:08:42 -03:00
|
|
|
dry_run=self.dry_run,
|
|
|
|
force=self.force)
|
2000-03-26 17:45:14 -04:00
|
|
|
|
|
|
|
# And make sure that any compile/link-related options (which might
|
|
|
|
# come from the command-line or from the setup script) are set in
|
|
|
|
# that CCompiler object -- that way, they automatically apply to
|
|
|
|
# all compiling and linking done here.
|
1999-08-14 20:57:49 -03:00
|
|
|
if self.include_dirs is not None:
|
|
|
|
self.compiler.set_include_dirs (self.include_dirs)
|
|
|
|
if self.define is not None:
|
|
|
|
# 'define' option is a list of (name,value) tuples
|
|
|
|
for (name,value) in self.define:
|
|
|
|
self.compiler.define_macro (name, value)
|
|
|
|
if self.undef is not None:
|
|
|
|
for macro in self.undef:
|
|
|
|
self.compiler.undefine_macro (macro)
|
2000-03-26 17:45:14 -04:00
|
|
|
if self.libraries is not None:
|
|
|
|
self.compiler.set_libraries (self.libraries)
|
1999-08-14 20:57:49 -03:00
|
|
|
if self.library_dirs is not None:
|
|
|
|
self.compiler.set_library_dirs (self.library_dirs)
|
|
|
|
if self.rpath is not None:
|
|
|
|
self.compiler.set_runtime_library_dirs (self.rpath)
|
|
|
|
if self.link_objects is not None:
|
|
|
|
self.compiler.set_link_objects (self.link_objects)
|
2000-03-01 21:32:21 -04:00
|
|
|
|
2000-03-26 17:45:14 -04:00
|
|
|
# Now actually compile and link everything.
|
2000-03-28 22:13:09 -04:00
|
|
|
self.build_extensions ()
|
|
|
|
|
|
|
|
# run ()
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
|
|
|
|
def check_extensions_list (self, extensions):
|
2000-02-04 22:23:16 -04:00
|
|
|
"""Ensure that the list of extensions (presumably provided as a
|
|
|
|
command option 'extensions') is valid, i.e. it is a list of
|
|
|
|
2-tuples, where the tuples are (extension_name, build_info_dict).
|
2000-04-15 19:15:07 -03:00
|
|
|
Raise DistutilsSetupError if the structure is invalid anywhere;
|
2000-02-04 22:23:16 -04:00
|
|
|
just returns otherwise."""
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
if type (extensions) is not ListType:
|
2000-04-15 19:15:07 -03:00
|
|
|
raise DistutilsSetupError, \
|
1999-08-14 20:57:49 -03:00
|
|
|
"'ext_modules' option must be a list of tuples"
|
|
|
|
|
|
|
|
for ext in extensions:
|
|
|
|
if type (ext) is not TupleType and len (ext) != 2:
|
2000-04-15 19:15:07 -03:00
|
|
|
raise DistutilsSetupError, \
|
1999-08-14 20:57:49 -03:00
|
|
|
"each element of 'ext_modules' option must be a 2-tuple"
|
|
|
|
|
|
|
|
if not (type (ext[0]) is StringType and
|
|
|
|
extension_name_re.match (ext[0])):
|
2000-04-15 19:15:07 -03:00
|
|
|
raise DistutilsSetupError, \
|
1999-08-14 20:57:49 -03:00
|
|
|
"first element of each tuple in 'ext_modules' " + \
|
|
|
|
"must be the extension name (a string)"
|
|
|
|
|
|
|
|
if type (ext[1]) is not DictionaryType:
|
2000-04-15 19:15:07 -03:00
|
|
|
raise DistutilsSetupError, \
|
1999-08-14 20:57:49 -03:00
|
|
|
"second element of each tuple in 'ext_modules' " + \
|
2000-02-04 22:23:16 -04:00
|
|
|
"must be a dictionary (build info)"
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
# end sanity-check for
|
|
|
|
|
|
|
|
# check_extensions_list ()
|
|
|
|
|
|
|
|
|
1999-09-29 09:49:35 -03:00
|
|
|
def get_source_files (self):
|
|
|
|
|
|
|
|
filenames = []
|
|
|
|
|
|
|
|
# Wouldn't it be neat if we knew the names of header files too...
|
1999-12-12 13:01:01 -04:00
|
|
|
for (extension_name, build_info) in self.extensions:
|
1999-09-29 09:49:35 -03:00
|
|
|
sources = build_info.get ('sources')
|
|
|
|
if type (sources) in (ListType, TupleType):
|
|
|
|
filenames.extend (sources)
|
|
|
|
|
|
|
|
return filenames
|
|
|
|
|
|
|
|
|
2000-03-28 22:13:09 -04:00
|
|
|
def get_outputs (self):
|
|
|
|
|
|
|
|
# Sanity check the 'extensions' list -- can't assume this is being
|
|
|
|
# done in the same run as a 'build_extensions()' call (in fact, we
|
|
|
|
# can probably assume that it *isn't*!).
|
|
|
|
self.check_extensions_list (self.extensions)
|
|
|
|
|
|
|
|
# And build the list of output (built) filenames. Note that this
|
|
|
|
# ignores the 'inplace' flag, and assumes everything goes in the
|
|
|
|
# "build" tree.
|
|
|
|
outputs = []
|
|
|
|
for (extension_name, build_info) in self.extensions:
|
|
|
|
fullname = self.get_ext_fullname (extension_name)
|
|
|
|
outputs.append (os.path.join (self.build_lib,
|
|
|
|
self.get_ext_filename(fullname)))
|
|
|
|
return outputs
|
|
|
|
|
|
|
|
# get_outputs ()
|
|
|
|
|
|
|
|
|
2000-03-30 15:47:22 -04:00
|
|
|
def build_extensions (self):
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-03-28 22:13:09 -04:00
|
|
|
# First, sanity-check the 'extensions' list
|
|
|
|
self.check_extensions_list (self.extensions)
|
|
|
|
|
|
|
|
for (extension_name, build_info) in self.extensions:
|
1999-08-14 20:57:49 -03:00
|
|
|
sources = build_info.get ('sources')
|
1999-12-12 13:01:01 -04:00
|
|
|
if sources is None or type (sources) not in (ListType, TupleType):
|
2000-04-15 19:15:07 -03:00
|
|
|
raise DistutilsSetupError, \
|
2000-02-04 22:23:16 -04:00
|
|
|
("in 'ext_modules' option (extension '%s'), " +
|
2000-02-03 19:07:54 -04:00
|
|
|
"'sources' must be present and must be " +
|
|
|
|
"a list of source filenames") % extension_name
|
1999-12-12 13:01:01 -04:00
|
|
|
sources = list (sources)
|
1999-09-29 09:49:35 -03:00
|
|
|
|
2000-02-03 19:07:54 -04:00
|
|
|
self.announce ("building '%s' extension" % extension_name)
|
|
|
|
|
1999-09-29 09:49:35 -03:00
|
|
|
# First step: compile the source code to object files. This
|
|
|
|
# drops the object files in the current directory, regardless
|
|
|
|
# of where the source is (may be a bad thing, but that's how a
|
|
|
|
# Makefile.pre.in-based system does it, so at least there's a
|
|
|
|
# precedent!)
|
1999-08-14 20:57:49 -03:00
|
|
|
macros = build_info.get ('macros')
|
|
|
|
include_dirs = build_info.get ('include_dirs')
|
2000-02-29 21:43:28 -04:00
|
|
|
objects = self.compiler.compile (sources,
|
|
|
|
output_dir=self.build_temp,
|
|
|
|
macros=macros,
|
|
|
|
include_dirs=include_dirs,
|
|
|
|
debug=self.debug)
|
1999-08-14 20:57:49 -03:00
|
|
|
|
1999-09-29 09:49:35 -03:00
|
|
|
# Now link the object files together into a "shared object" --
|
|
|
|
# of course, first we have to figure out all the other things
|
|
|
|
# that go into the mix.
|
1999-08-14 20:57:49 -03:00
|
|
|
extra_objects = build_info.get ('extra_objects')
|
|
|
|
if extra_objects:
|
|
|
|
objects.extend (extra_objects)
|
2000-03-26 17:45:14 -04:00
|
|
|
libraries = build_info.get ('libraries')
|
|
|
|
library_dirs = build_info.get ('library_dirs')
|
|
|
|
rpath = build_info.get ('rpath')
|
1999-09-29 09:49:35 -03:00
|
|
|
extra_args = build_info.get ('extra_link_args') or []
|
2000-02-09 22:17:06 -04:00
|
|
|
|
1999-09-29 09:49:35 -03:00
|
|
|
if self.compiler.compiler_type == 'msvc':
|
2000-02-09 22:17:06 -04:00
|
|
|
def_file = build_info.get ('def_file')
|
|
|
|
if def_file is None:
|
|
|
|
source_dir = os.path.dirname (sources[0])
|
|
|
|
ext_base = (string.split (extension_name, '.'))[-1]
|
|
|
|
def_file = os.path.join (source_dir, "%s.def" % ext_base)
|
|
|
|
if not os.path.exists (def_file):
|
|
|
|
def_file = None
|
|
|
|
|
|
|
|
if def_file is not None:
|
|
|
|
extra_args.append ('/DEF:' + def_file)
|
|
|
|
else:
|
|
|
|
modname = string.split (extension_name, '.')[-1]
|
|
|
|
extra_args.append('/export:init%s'%modname)
|
2000-03-30 23:50:23 -04:00
|
|
|
|
|
|
|
# The MSVC linker generates unneeded .lib and .exp files,
|
|
|
|
# which cannot be suppressed by any linker switches. So
|
|
|
|
# make sure they are generated in the temporary build
|
|
|
|
# directory.
|
|
|
|
implib_dir = os.path.join(self.build_temp,\
|
|
|
|
self.get_ext_libname(extension_name))
|
|
|
|
extra_args.append ('/IMPLIB:' + implib_dir)
|
2000-03-28 22:13:09 -04:00
|
|
|
# if MSVC
|
2000-02-29 21:43:28 -04:00
|
|
|
|
|
|
|
fullname = self.get_ext_fullname (extension_name)
|
|
|
|
if self.inplace:
|
|
|
|
# ignore build-lib -- put the compiled extension into
|
|
|
|
# the source tree along with pure Python modules
|
|
|
|
|
|
|
|
modpath = string.split (fullname, '.')
|
|
|
|
package = string.join (modpath[0:-1], '.')
|
|
|
|
base = modpath[-1]
|
|
|
|
|
|
|
|
build_py = self.find_peer ('build_py')
|
|
|
|
package_dir = build_py.get_package_dir (package)
|
|
|
|
ext_filename = os.path.join (package_dir,
|
|
|
|
self.get_ext_filename(base))
|
|
|
|
else:
|
|
|
|
ext_filename = os.path.join (self.build_lib,
|
|
|
|
self.get_ext_filename(fullname))
|
1999-09-29 09:49:35 -03:00
|
|
|
|
1999-09-21 15:27:12 -03:00
|
|
|
self.compiler.link_shared_object (objects, ext_filename,
|
|
|
|
libraries=libraries,
|
|
|
|
library_dirs=library_dirs,
|
2000-03-26 17:45:14 -04:00
|
|
|
runtime_library_dirs=rpath,
|
2000-02-08 22:20:14 -04:00
|
|
|
extra_postargs=extra_args,
|
|
|
|
debug=self.debug)
|
1999-08-14 20:57:49 -03:00
|
|
|
|
|
|
|
# build_extensions ()
|
|
|
|
|
|
|
|
|
2000-02-29 21:43:28 -04:00
|
|
|
def get_ext_fullname (self, ext_name):
|
|
|
|
if self.package is None:
|
|
|
|
return ext_name
|
|
|
|
else:
|
|
|
|
return self.package + '.' + ext_name
|
|
|
|
|
|
|
|
def get_ext_filename (self, ext_name):
|
2000-01-30 14:34:15 -04:00
|
|
|
from distutils import sysconfig
|
1999-09-21 15:27:12 -03:00
|
|
|
ext_path = string.split (ext_name, '.')
|
2000-03-30 23:50:23 -04:00
|
|
|
# extensions in debug_mode are named 'module_d.pyd' under windows
|
|
|
|
if os.name == 'nt' and self.debug:
|
|
|
|
return apply (os.path.join, ext_path) + '_d' + sysconfig.SO
|
2000-01-30 14:34:15 -04:00
|
|
|
return apply (os.path.join, ext_path) + sysconfig.SO
|
1999-08-14 20:57:49 -03:00
|
|
|
|
2000-03-30 23:50:23 -04:00
|
|
|
def get_ext_libname (self, ext_name):
|
|
|
|
# create a filename for the (unneeded) lib-file.
|
|
|
|
# extensions in debug_mode are named 'module_d.pyd' under windows
|
|
|
|
ext_path = string.split (ext_name, '.')
|
|
|
|
if os.name == 'nt' and self.debug:
|
|
|
|
return apply (os.path.join, ext_path) + '_d.lib'
|
|
|
|
return apply (os.path.join, ext_path) + '.lib'
|
|
|
|
|
1999-08-14 20:57:49 -03:00
|
|
|
# class BuildExt
|