build_ext.py 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  1. """distutils.command.build_ext
  2. Implements the Distutils 'build_ext' command, for building extension
  3. modules (currently limited to C extensions, should accommodate C++
  4. extensions ASAP)."""
  5. # This module should be kept compatible with Python 2.1.
  6. __revision__ = "$Id$"
  7. import sys, os, string, re
  8. from types import *
  9. from site import USER_BASE, USER_SITE
  10. from distutils.core import Command
  11. from distutils.errors import *
  12. from distutils.sysconfig import customize_compiler, get_python_version
  13. from distutils.dep_util import newer_group
  14. from distutils.extension import Extension
  15. from distutils.util import get_platform
  16. from distutils import log
  17. if os.name == 'nt':
  18. from distutils.msvccompiler import get_build_version
  19. MSVC_VERSION = int(get_build_version())
  20. # An extension name is just a dot-separated list of Python NAMEs (ie.
  21. # the same as a fully-qualified module name).
  22. extension_name_re = re.compile \
  23. (r'^[a-zA-Z_][a-zA-Z_0-9]*(\.[a-zA-Z_][a-zA-Z_0-9]*)*$')
  24. def show_compilers ():
  25. from distutils.ccompiler import show_compilers
  26. show_compilers()
  27. class build_ext (Command):
  28. description = "build C/C++ extensions (compile/link to build directory)"
  29. # XXX thoughts on how to deal with complex command-line options like
  30. # these, i.e. how to make it so fancy_getopt can suck them off the
  31. # command line and make it look like setup.py defined the appropriate
  32. # lists of tuples of what-have-you.
  33. # - each command needs a callback to process its command-line options
  34. # - Command.__init__() needs access to its share of the whole
  35. # command line (must ultimately come from
  36. # Distribution.parse_command_line())
  37. # - it then calls the current command class' option-parsing
  38. # callback to deal with weird options like -D, which have to
  39. # parse the option text and churn out some custom data
  40. # structure
  41. # - that data structure (in this case, a list of 2-tuples)
  42. # will then be present in the command object by the time
  43. # we get to finalize_options() (i.e. the constructor
  44. # takes care of both command-line and client options
  45. # in between initialize_options() and finalize_options())
  46. sep_by = " (separated by '%s')" % os.pathsep
  47. user_options = [
  48. ('build-lib=', 'b',
  49. "directory for compiled extension modules"),
  50. ('build-temp=', 't',
  51. "directory for temporary files (build by-products)"),
  52. ('plat-name=', 'p',
  53. "platform name to cross-compile for, if supported "
  54. "(default: %s)" % get_platform()),
  55. ('inplace', 'i',
  56. "ignore build-lib and put compiled extensions into the source " +
  57. "directory alongside your pure Python modules"),
  58. ('include-dirs=', 'I',
  59. "list of directories to search for header files" + sep_by),
  60. ('define=', 'D',
  61. "C preprocessor macros to define"),
  62. ('undef=', 'U',
  63. "C preprocessor macros to undefine"),
  64. ('libraries=', 'l',
  65. "external C libraries to link with"),
  66. ('library-dirs=', 'L',
  67. "directories to search for external C libraries" + sep_by),
  68. ('rpath=', 'R',
  69. "directories to search for shared C libraries at runtime"),
  70. ('link-objects=', 'O',
  71. "extra explicit link objects to include in the link"),
  72. ('debug', 'g',
  73. "compile/link with debugging information"),
  74. ('force', 'f',
  75. "forcibly build everything (ignore file timestamps)"),
  76. ('compiler=', 'c',
  77. "specify the compiler type"),
  78. ('swig-cpp', None,
  79. "make SWIG create C++ files (default is C)"),
  80. ('swig-opts=', None,
  81. "list of SWIG command line options"),
  82. ('swig=', None,
  83. "path to the SWIG executable"),
  84. ('user', None,
  85. "add user include, library and rpath"),
  86. ]
  87. boolean_options = ['inplace', 'debug', 'force', 'swig-cpp', 'user']
  88. help_options = [
  89. ('help-compiler', None,
  90. "list available compilers", show_compilers),
  91. ]
  92. def initialize_options (self):
  93. self.extensions = None
  94. self.build_lib = None
  95. self.plat_name = None
  96. self.build_temp = None
  97. self.inplace = 0
  98. self.package = None
  99. self.include_dirs = None
  100. self.define = None
  101. self.undef = None
  102. self.libraries = None
  103. self.library_dirs = None
  104. self.rpath = None
  105. self.link_objects = None
  106. self.debug = None
  107. self.force = None
  108. self.compiler = None
  109. self.swig = None
  110. self.swig_cpp = None
  111. self.swig_opts = None
  112. self.user = None
  113. def finalize_options(self):
  114. from distutils import sysconfig
  115. self.set_undefined_options('build',
  116. ('build_lib', 'build_lib'),
  117. ('build_temp', 'build_temp'),
  118. ('compiler', 'compiler'),
  119. ('debug', 'debug'),
  120. ('force', 'force'),
  121. ('plat_name', 'plat_name'),
  122. )
  123. if self.package is None:
  124. self.package = self.distribution.ext_package
  125. self.extensions = self.distribution.ext_modules
  126. # Make sure Python's include directories (for Python.h, pyconfig.h,
  127. # etc.) are in the include search path.
  128. py_include = sysconfig.get_python_inc()
  129. plat_py_include = sysconfig.get_python_inc(plat_specific=1)
  130. if self.include_dirs is None:
  131. self.include_dirs = self.distribution.include_dirs or []
  132. if isinstance(self.include_dirs, str):
  133. self.include_dirs = self.include_dirs.split(os.pathsep)
  134. # Put the Python "system" include dir at the end, so that
  135. # any local include dirs take precedence.
  136. self.include_dirs.append(py_include)
  137. if plat_py_include != py_include:
  138. self.include_dirs.append(plat_py_include)
  139. self.ensure_string_list('libraries')
  140. # Life is easier if we're not forever checking for None, so
  141. # simplify these options to empty lists if unset
  142. if self.libraries is None:
  143. self.libraries = []
  144. if self.library_dirs is None:
  145. self.library_dirs = []
  146. elif type(self.library_dirs) is StringType:
  147. self.library_dirs = string.split(self.library_dirs, os.pathsep)
  148. if self.rpath is None:
  149. self.rpath = []
  150. elif type(self.rpath) is StringType:
  151. self.rpath = string.split(self.rpath, os.pathsep)
  152. # for extensions under windows use different directories
  153. # for Release and Debug builds.
  154. # also Python's library directory must be appended to library_dirs
  155. if os.name == 'nt':
  156. # the 'libs' directory is for binary installs - we assume that
  157. # must be the *native* platform. But we don't really support
  158. # cross-compiling via a binary install anyway, so we let it go.
  159. self.library_dirs.append(os.path.join(sys.exec_prefix, 'libs'))
  160. if self.debug:
  161. self.build_temp = os.path.join(self.build_temp, "Debug")
  162. else:
  163. self.build_temp = os.path.join(self.build_temp, "Release")
  164. # Append the source distribution include and library directories,
  165. # this allows distutils on windows to work in the source tree
  166. self.include_dirs.append(os.path.join(sys.exec_prefix, 'PC'))
  167. if MSVC_VERSION == 9:
  168. # Use the .lib files for the correct architecture
  169. if self.plat_name == 'win32':
  170. suffix = ''
  171. else:
  172. # win-amd64 or win-ia64
  173. suffix = self.plat_name[4:]
  174. # We could have been built in one of two places; add both
  175. for d in ('PCbuild',), ('PC', 'VS9.0'):
  176. new_lib = os.path.join(sys.exec_prefix, *d)
  177. if suffix:
  178. new_lib = os.path.join(new_lib, suffix)
  179. self.library_dirs.append(new_lib)
  180. elif MSVC_VERSION == 8:
  181. self.library_dirs.append(os.path.join(sys.exec_prefix,
  182. 'PC', 'VS8.0'))
  183. elif MSVC_VERSION == 7:
  184. self.library_dirs.append(os.path.join(sys.exec_prefix,
  185. 'PC', 'VS7.1'))
  186. else:
  187. self.library_dirs.append(os.path.join(sys.exec_prefix,
  188. 'PC', 'VC6'))
  189. # OS/2 (EMX) doesn't support Debug vs Release builds, but has the
  190. # import libraries in its "Config" subdirectory
  191. if os.name == 'os2':
  192. self.library_dirs.append(os.path.join(sys.exec_prefix, 'Config'))
  193. # for extensions under Cygwin and AtheOS Python's library directory must be
  194. # appended to library_dirs
  195. if sys.platform[:6] == 'cygwin' or sys.platform[:6] == 'atheos':
  196. if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
  197. # building third party extensions
  198. self.library_dirs.append(os.path.join(sys.prefix, "lib",
  199. "python" + get_python_version(),
  200. "config"))
  201. else:
  202. # building python standard extensions
  203. self.library_dirs.append('.')
  204. # For building extensions with a shared Python library,
  205. # Python's library directory must be appended to library_dirs
  206. # See Issues: #1600860, #4366
  207. if (sysconfig.get_config_var('Py_ENABLE_SHARED')):
  208. if not sysconfig.python_build:
  209. # building third party extensions
  210. self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
  211. else:
  212. # building python standard extensions
  213. self.library_dirs.append('.')
  214. # The argument parsing will result in self.define being a string, but
  215. # it has to be a list of 2-tuples. All the preprocessor symbols
  216. # specified by the 'define' option will be set to '1'. Multiple
  217. # symbols can be separated with commas.
  218. if self.define:
  219. defines = self.define.split(',')
  220. self.define = map(lambda symbol: (symbol, '1'), defines)
  221. # The option for macros to undefine is also a string from the
  222. # option parsing, but has to be a list. Multiple symbols can also
  223. # be separated with commas here.
  224. if self.undef:
  225. self.undef = self.undef.split(',')
  226. if self.swig_opts is None:
  227. self.swig_opts = []
  228. else:
  229. self.swig_opts = self.swig_opts.split(' ')
  230. # Finally add the user include and library directories if requested
  231. if self.user:
  232. user_include = os.path.join(USER_BASE, "include")
  233. user_lib = os.path.join(USER_BASE, "lib")
  234. if os.path.isdir(user_include):
  235. self.include_dirs.append(user_include)
  236. if os.path.isdir(user_lib):
  237. self.library_dirs.append(user_lib)
  238. self.rpath.append(user_lib)
  239. def run(self):
  240. from distutils.ccompiler import new_compiler
  241. # 'self.extensions', as supplied by setup.py, is a list of
  242. # Extension instances. See the documentation for Extension (in
  243. # distutils.extension) for details.
  244. #
  245. # For backwards compatibility with Distutils 0.8.2 and earlier, we
  246. # also allow the 'extensions' list to be a list of tuples:
  247. # (ext_name, build_info)
  248. # where build_info is a dictionary containing everything that
  249. # Extension instances do except the name, with a few things being
  250. # differently named. We convert these 2-tuples to Extension
  251. # instances as needed.
  252. if not self.extensions:
  253. return
  254. # If we were asked to build any C/C++ libraries, make sure that the
  255. # directory where we put them is in the library search path for
  256. # linking extensions.
  257. if self.distribution.has_c_libraries():
  258. build_clib = self.get_finalized_command('build_clib')
  259. self.libraries.extend(build_clib.get_library_names() or [])
  260. self.library_dirs.append(build_clib.build_clib)
  261. # Setup the CCompiler object that we'll use to do all the
  262. # compiling and linking
  263. self.compiler = new_compiler(compiler=self.compiler,
  264. verbose=self.verbose,
  265. dry_run=self.dry_run,
  266. force=self.force)
  267. customize_compiler(self.compiler)
  268. # If we are cross-compiling, init the compiler now (if we are not
  269. # cross-compiling, init would not hurt, but people may rely on
  270. # late initialization of compiler even if they shouldn't...)
  271. if os.name == 'nt' and self.plat_name != get_platform():
  272. self.compiler.initialize(self.plat_name)
  273. # And make sure that any compile/link-related options (which might
  274. # come from the command-line or from the setup script) are set in
  275. # that CCompiler object -- that way, they automatically apply to
  276. # all compiling and linking done here.
  277. if self.include_dirs is not None:
  278. self.compiler.set_include_dirs(self.include_dirs)
  279. if self.define is not None:
  280. # 'define' option is a list of (name,value) tuples
  281. for (name, value) in self.define:
  282. self.compiler.define_macro(name, value)
  283. if self.undef is not None:
  284. for macro in self.undef:
  285. self.compiler.undefine_macro(macro)
  286. if self.libraries is not None:
  287. self.compiler.set_libraries(self.libraries)
  288. if self.library_dirs is not None:
  289. self.compiler.set_library_dirs(self.library_dirs)
  290. if self.rpath is not None:
  291. self.compiler.set_runtime_library_dirs(self.rpath)
  292. if self.link_objects is not None:
  293. self.compiler.set_link_objects(self.link_objects)
  294. # Now actually compile and link everything.
  295. self.build_extensions()
  296. def check_extensions_list(self, extensions):
  297. """Ensure that the list of extensions (presumably provided as a
  298. command option 'extensions') is valid, i.e. it is a list of
  299. Extension objects. We also support the old-style list of 2-tuples,
  300. where the tuples are (ext_name, build_info), which are converted to
  301. Extension instances here.
  302. Raise DistutilsSetupError if the structure is invalid anywhere;
  303. just returns otherwise.
  304. """
  305. if not isinstance(extensions, list):
  306. raise DistutilsSetupError, \
  307. "'ext_modules' option must be a list of Extension instances"
  308. for i, ext in enumerate(extensions):
  309. if isinstance(ext, Extension):
  310. continue # OK! (assume type-checking done
  311. # by Extension constructor)
  312. if not isinstance(ext, tuple) or len(ext) != 2:
  313. raise DistutilsSetupError, \
  314. ("each element of 'ext_modules' option must be an "
  315. "Extension instance or 2-tuple")
  316. ext_name, build_info = ext
  317. log.warn(("old-style (ext_name, build_info) tuple found in "
  318. "ext_modules for extension '%s'"
  319. "-- please convert to Extension instance" % ext_name))
  320. if not (isinstance(ext_name, str) and
  321. extension_name_re.match(ext_name)):
  322. raise DistutilsSetupError, \
  323. ("first element of each tuple in 'ext_modules' "
  324. "must be the extension name (a string)")
  325. if not isinstance(build_info, dict):
  326. raise DistutilsSetupError, \
  327. ("second element of each tuple in 'ext_modules' "
  328. "must be a dictionary (build info)")
  329. # OK, the (ext_name, build_info) dict is type-safe: convert it
  330. # to an Extension instance.
  331. ext = Extension(ext_name, build_info['sources'])
  332. # Easy stuff: one-to-one mapping from dict elements to
  333. # instance attributes.
  334. for key in ('include_dirs', 'library_dirs', 'libraries',
  335. 'extra_objects', 'extra_compile_args',
  336. 'extra_link_args'):
  337. val = build_info.get(key)
  338. if val is not None:
  339. setattr(ext, key, val)
  340. # Medium-easy stuff: same syntax/semantics, different names.
  341. ext.runtime_library_dirs = build_info.get('rpath')
  342. if 'def_file' in build_info:
  343. log.warn("'def_file' element of build info dict "
  344. "no longer supported")
  345. # Non-trivial stuff: 'macros' split into 'define_macros'
  346. # and 'undef_macros'.
  347. macros = build_info.get('macros')
  348. if macros:
  349. ext.define_macros = []
  350. ext.undef_macros = []
  351. for macro in macros:
  352. if not (isinstance(macro, tuple) and len(macro) in (1, 2)):
  353. raise DistutilsSetupError, \
  354. ("'macros' element of build info dict "
  355. "must be 1- or 2-tuple")
  356. if len(macro) == 1:
  357. ext.undef_macros.append(macro[0])
  358. elif len(macro) == 2:
  359. ext.define_macros.append(macro)
  360. extensions[i] = ext
  361. def get_source_files(self):
  362. self.check_extensions_list(self.extensions)
  363. filenames = []
  364. # Wouldn't it be neat if we knew the names of header files too...
  365. for ext in self.extensions:
  366. filenames.extend(ext.sources)
  367. return filenames
  368. def get_outputs(self):
  369. # Sanity check the 'extensions' list -- can't assume this is being
  370. # done in the same run as a 'build_extensions()' call (in fact, we
  371. # can probably assume that it *isn't*!).
  372. self.check_extensions_list(self.extensions)
  373. # And build the list of output (built) filenames. Note that this
  374. # ignores the 'inplace' flag, and assumes everything goes in the
  375. # "build" tree.
  376. outputs = []
  377. for ext in self.extensions:
  378. outputs.append(self.get_ext_fullpath(ext.name))
  379. return outputs
  380. def build_extensions(self):
  381. # First, sanity-check the 'extensions' list
  382. self.check_extensions_list(self.extensions)
  383. for ext in self.extensions:
  384. self.build_extension(ext)
  385. def build_extension(self, ext):
  386. sources = ext.sources
  387. if sources is None or type(sources) not in (ListType, TupleType):
  388. raise DistutilsSetupError, \
  389. ("in 'ext_modules' option (extension '%s'), " +
  390. "'sources' must be present and must be " +
  391. "a list of source filenames") % ext.name
  392. sources = list(sources)
  393. ext_path = self.get_ext_fullpath(ext.name)
  394. depends = sources + ext.depends
  395. if not (self.force or newer_group(depends, ext_path, 'newer')):
  396. log.debug("skipping '%s' extension (up-to-date)", ext.name)
  397. return
  398. else:
  399. log.info("building '%s' extension", ext.name)
  400. # First, scan the sources for SWIG definition files (.i), run
  401. # SWIG on 'em to create .c files, and modify the sources list
  402. # accordingly.
  403. sources = self.swig_sources(sources, ext)
  404. # Next, compile the source code to object files.
  405. # XXX not honouring 'define_macros' or 'undef_macros' -- the
  406. # CCompiler API needs to change to accommodate this, and I
  407. # want to do one thing at a time!
  408. # Two possible sources for extra compiler arguments:
  409. # - 'extra_compile_args' in Extension object
  410. # - CFLAGS environment variable (not particularly
  411. # elegant, but people seem to expect it and I
  412. # guess it's useful)
  413. # The environment variable should take precedence, and
  414. # any sensible compiler will give precedence to later
  415. # command line args. Hence we combine them in order:
  416. extra_args = ext.extra_compile_args or []
  417. macros = ext.define_macros[:]
  418. for undef in ext.undef_macros:
  419. macros.append((undef,))
  420. objects = self.compiler.compile(sources,
  421. output_dir=self.build_temp,
  422. macros=macros,
  423. include_dirs=ext.include_dirs,
  424. debug=self.debug,
  425. extra_postargs=extra_args,
  426. depends=ext.depends)
  427. # XXX -- this is a Vile HACK!
  428. #
  429. # The setup.py script for Python on Unix needs to be able to
  430. # get this list so it can perform all the clean up needed to
  431. # avoid keeping object files around when cleaning out a failed
  432. # build of an extension module. Since Distutils does not
  433. # track dependencies, we have to get rid of intermediates to
  434. # ensure all the intermediates will be properly re-built.
  435. #
  436. self._built_objects = objects[:]
  437. # Now link the object files together into a "shared object" --
  438. # of course, first we have to figure out all the other things
  439. # that go into the mix.
  440. if ext.extra_objects:
  441. objects.extend(ext.extra_objects)
  442. extra_args = ext.extra_link_args or []
  443. # Detect target language, if not provided
  444. language = ext.language or self.compiler.detect_language(sources)
  445. self.compiler.link_shared_object(
  446. objects, ext_path,
  447. libraries=self.get_libraries(ext),
  448. library_dirs=ext.library_dirs,
  449. runtime_library_dirs=ext.runtime_library_dirs,
  450. extra_postargs=extra_args,
  451. export_symbols=self.get_export_symbols(ext),
  452. debug=self.debug,
  453. build_temp=self.build_temp,
  454. target_lang=language)
  455. def swig_sources (self, sources, extension):
  456. """Walk the list of source files in 'sources', looking for SWIG
  457. interface (.i) files. Run SWIG on all that are found, and
  458. return a modified 'sources' list with SWIG source files replaced
  459. by the generated C (or C++) files.
  460. """
  461. new_sources = []
  462. swig_sources = []
  463. swig_targets = {}
  464. # XXX this drops generated C/C++ files into the source tree, which
  465. # is fine for developers who want to distribute the generated
  466. # source -- but there should be an option to put SWIG output in
  467. # the temp dir.
  468. if self.swig_cpp:
  469. log.warn("--swig-cpp is deprecated - use --swig-opts=-c++")
  470. if self.swig_cpp or ('-c++' in self.swig_opts) or \
  471. ('-c++' in extension.swig_opts):
  472. target_ext = '.cpp'
  473. else:
  474. target_ext = '.c'
  475. for source in sources:
  476. (base, ext) = os.path.splitext(source)
  477. if ext == ".i": # SWIG interface file
  478. new_sources.append(base + '_wrap' + target_ext)
  479. swig_sources.append(source)
  480. swig_targets[source] = new_sources[-1]
  481. else:
  482. new_sources.append(source)
  483. if not swig_sources:
  484. return new_sources
  485. swig = self.swig or self.find_swig()
  486. swig_cmd = [swig, "-python"]
  487. swig_cmd.extend(self.swig_opts)
  488. if self.swig_cpp:
  489. swig_cmd.append("-c++")
  490. # Do not override commandline arguments
  491. if not self.swig_opts:
  492. for o in extension.swig_opts:
  493. swig_cmd.append(o)
  494. for source in swig_sources:
  495. target = swig_targets[source]
  496. log.info("swigging %s to %s", source, target)
  497. self.spawn(swig_cmd + ["-o", target, source])
  498. return new_sources
  499. # swig_sources ()
  500. def find_swig (self):
  501. """Return the name of the SWIG executable. On Unix, this is
  502. just "swig" -- it should be in the PATH. Tries a bit harder on
  503. Windows.
  504. """
  505. if os.name == "posix":
  506. return "swig"
  507. elif os.name == "nt":
  508. # Look for SWIG in its standard installation directory on
  509. # Windows (or so I presume!). If we find it there, great;
  510. # if not, act like Unix and assume it's in the PATH.
  511. for vers in ("1.3", "1.2", "1.1"):
  512. fn = os.path.join("c:\\swig%s" % vers, "swig.exe")
  513. if os.path.isfile(fn):
  514. return fn
  515. else:
  516. return "swig.exe"
  517. elif os.name == "os2":
  518. # assume swig available in the PATH.
  519. return "swig.exe"
  520. else:
  521. raise DistutilsPlatformError, \
  522. ("I don't know how to find (much less run) SWIG "
  523. "on platform '%s'") % os.name
  524. # find_swig ()
  525. # -- Name generators -----------------------------------------------
  526. # (extension names, filenames, whatever)
  527. def get_ext_fullpath(self, ext_name):
  528. """Returns the path of the filename for a given extension.
  529. The file is located in `build_lib` or directly in the package
  530. (inplace option).
  531. """
  532. # makes sure the extension name is only using dots
  533. all_dots = string.maketrans('/'+os.sep, '..')
  534. ext_name = ext_name.translate(all_dots)
  535. fullname = self.get_ext_fullname(ext_name)
  536. modpath = fullname.split('.')
  537. filename = self.get_ext_filename(ext_name)
  538. filename = os.path.split(filename)[-1]
  539. if not self.inplace:
  540. # no further work needed
  541. # returning :
  542. # build_dir/package/path/filename
  543. filename = os.path.join(*modpath[:-1]+[filename])
  544. return os.path.join(self.build_lib, filename)
  545. # the inplace option requires to find the package directory
  546. # using the build_py command for that
  547. package = '.'.join(modpath[0:-1])
  548. build_py = self.get_finalized_command('build_py')
  549. package_dir = os.path.abspath(build_py.get_package_dir(package))
  550. # returning
  551. # package_dir/filename
  552. return os.path.join(package_dir, filename)
  553. def get_ext_fullname(self, ext_name):
  554. """Returns the fullname of a given extension name.
  555. Adds the `package.` prefix"""
  556. if self.package is None:
  557. return ext_name
  558. else:
  559. return self.package + '.' + ext_name
  560. def get_ext_filename(self, ext_name):
  561. r"""Convert the name of an extension (eg. "foo.bar") into the name
  562. of the file from which it will be loaded (eg. "foo/bar.so", or
  563. "foo\bar.pyd").
  564. """
  565. from distutils.sysconfig import get_config_var
  566. ext_path = string.split(ext_name, '.')
  567. # OS/2 has an 8 character module (extension) limit :-(
  568. if os.name == "os2":
  569. ext_path[len(ext_path) - 1] = ext_path[len(ext_path) - 1][:8]
  570. # extensions in debug_mode are named 'module_d.pyd' under windows
  571. so_ext = get_config_var('SO')
  572. if os.name == 'nt' and self.debug:
  573. return os.path.join(*ext_path) + '_d' + so_ext
  574. return os.path.join(*ext_path) + so_ext
  575. def get_export_symbols (self, ext):
  576. """Return the list of symbols that a shared extension has to
  577. export. This either uses 'ext.export_symbols' or, if it's not
  578. provided, "init" + module_name. Only relevant on Windows, where
  579. the .pyd file (DLL) must export the module "init" function.
  580. """
  581. initfunc_name = "init" + ext.name.split('.')[-1]
  582. if initfunc_name not in ext.export_symbols:
  583. ext.export_symbols.append(initfunc_name)
  584. return ext.export_symbols
  585. def get_libraries (self, ext):
  586. """Return the list of libraries to link against when building a
  587. shared extension. On most platforms, this is just 'ext.libraries';
  588. on Windows and OS/2, we add the Python library (eg. python20.dll).
  589. """
  590. # The python library is always needed on Windows. For MSVC, this
  591. # is redundant, since the library is mentioned in a pragma in
  592. # pyconfig.h that MSVC groks. The other Windows compilers all seem
  593. # to need it mentioned explicitly, though, so that's what we do.
  594. # Append '_d' to the python import library on debug builds.
  595. if sys.platform == "win32":
  596. from distutils.msvccompiler import MSVCCompiler
  597. if not isinstance(self.compiler, MSVCCompiler):
  598. template = "python%d%d"
  599. if self.debug:
  600. template = template + '_d'
  601. pythonlib = (template %
  602. (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
  603. # don't extend ext.libraries, it may be shared with other
  604. # extensions, it is a reference to the original list
  605. return ext.libraries + [pythonlib]
  606. else:
  607. return ext.libraries
  608. elif sys.platform == "os2emx":
  609. # EMX/GCC requires the python library explicitly, and I
  610. # believe VACPP does as well (though not confirmed) - AIM Apr01
  611. template = "python%d%d"
  612. # debug versions of the main DLL aren't supported, at least
  613. # not at this time - AIM Apr01
  614. #if self.debug:
  615. # template = template + '_d'
  616. pythonlib = (template %
  617. (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
  618. # don't extend ext.libraries, it may be shared with other
  619. # extensions, it is a reference to the original list
  620. return ext.libraries + [pythonlib]
  621. elif sys.platform[:6] == "cygwin":
  622. template = "python%d.%d"
  623. pythonlib = (template %
  624. (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
  625. # don't extend ext.libraries, it may be shared with other
  626. # extensions, it is a reference to the original list
  627. return ext.libraries + [pythonlib]
  628. elif sys.platform[:6] == "atheos":
  629. from distutils import sysconfig
  630. template = "python%d.%d"
  631. pythonlib = (template %
  632. (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
  633. # Get SHLIBS from Makefile
  634. extra = []
  635. for lib in sysconfig.get_config_var('SHLIBS').split():
  636. if lib.startswith('-l'):
  637. extra.append(lib[2:])
  638. else:
  639. extra.append(lib)
  640. # don't extend ext.libraries, it may be shared with other
  641. # extensions, it is a reference to the original list
  642. return ext.libraries + [pythonlib, "m"] + extra
  643. elif sys.platform == 'darwin':
  644. # Don't use the default code below
  645. return ext.libraries
  646. elif sys.platform[:3] == 'aix':
  647. # Don't use the default code below
  648. return ext.libraries
  649. else:
  650. from distutils import sysconfig
  651. if sysconfig.get_config_var('Py_ENABLE_SHARED'):
  652. template = "python%d.%d"
  653. pythonlib = (template %
  654. (sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff))
  655. return ext.libraries + [pythonlib]
  656. else:
  657. return ext.libraries
  658. # class build_ext