build_clib.py 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. """distutils.command.build_clib
  2. Implements the Distutils 'build_clib' command, to build a C/C++ library
  3. that is included in the module distribution and needed by an extension
  4. module."""
  5. __revision__ = "$Id$"
  6. # XXX this module has *lots* of code ripped-off quite transparently from
  7. # build_ext.py -- not surprisingly really, as the work required to build
  8. # a static library from a collection of C source files is not really all
  9. # that different from what's required to build a shared object file from
  10. # a collection of C source files. Nevertheless, I haven't done the
  11. # necessary refactoring to account for the overlap in code between the
  12. # two modules, mainly because a number of subtle details changed in the
  13. # cut 'n paste. Sigh.
  14. import os
  15. from distutils.core import Command
  16. from distutils.errors import DistutilsSetupError
  17. from distutils.sysconfig import customize_compiler
  18. from distutils import log
  19. def show_compilers():
  20. from distutils.ccompiler import show_compilers
  21. show_compilers()
  22. class build_clib(Command):
  23. description = "build C/C++ libraries used by Python extensions"
  24. user_options = [
  25. ('build-clib=', 'b',
  26. "directory to build C/C++ libraries to"),
  27. ('build-temp=', 't',
  28. "directory to put temporary build by-products"),
  29. ('debug', 'g',
  30. "compile with debugging information"),
  31. ('force', 'f',
  32. "forcibly build everything (ignore file timestamps)"),
  33. ('compiler=', 'c',
  34. "specify the compiler type"),
  35. ]
  36. boolean_options = ['debug', 'force']
  37. help_options = [
  38. ('help-compiler', None,
  39. "list available compilers", show_compilers),
  40. ]
  41. def initialize_options(self):
  42. self.build_clib = None
  43. self.build_temp = None
  44. # List of libraries to build
  45. self.libraries = None
  46. # Compilation options for all libraries
  47. self.include_dirs = None
  48. self.define = None
  49. self.undef = None
  50. self.debug = None
  51. self.force = 0
  52. self.compiler = None
  53. def finalize_options(self):
  54. # This might be confusing: both build-clib and build-temp default
  55. # to build-temp as defined by the "build" command. This is because
  56. # I think that C libraries are really just temporary build
  57. # by-products, at least from the point of view of building Python
  58. # extensions -- but I want to keep my options open.
  59. self.set_undefined_options('build',
  60. ('build_temp', 'build_clib'),
  61. ('build_temp', 'build_temp'),
  62. ('compiler', 'compiler'),
  63. ('debug', 'debug'),
  64. ('force', 'force'))
  65. self.libraries = self.distribution.libraries
  66. if self.libraries:
  67. self.check_library_list(self.libraries)
  68. if self.include_dirs is None:
  69. self.include_dirs = self.distribution.include_dirs or []
  70. if isinstance(self.include_dirs, str):
  71. self.include_dirs = self.include_dirs.split(os.pathsep)
  72. # XXX same as for build_ext -- what about 'self.define' and
  73. # 'self.undef' ?
  74. def run(self):
  75. if not self.libraries:
  76. return
  77. # Yech -- this is cut 'n pasted from build_ext.py!
  78. from distutils.ccompiler import new_compiler
  79. self.compiler = new_compiler(compiler=self.compiler,
  80. dry_run=self.dry_run,
  81. force=self.force)
  82. customize_compiler(self.compiler)
  83. if self.include_dirs is not None:
  84. self.compiler.set_include_dirs(self.include_dirs)
  85. if self.define is not None:
  86. # 'define' option is a list of (name,value) tuples
  87. for (name,value) in self.define:
  88. self.compiler.define_macro(name, value)
  89. if self.undef is not None:
  90. for macro in self.undef:
  91. self.compiler.undefine_macro(macro)
  92. self.build_libraries(self.libraries)
  93. def check_library_list(self, libraries):
  94. """Ensure that the list of libraries is valid.
  95. `library` is presumably provided as a command option 'libraries'.
  96. This method checks that it is a list of 2-tuples, where the tuples
  97. are (library_name, build_info_dict).
  98. Raise DistutilsSetupError if the structure is invalid anywhere;
  99. just returns otherwise.
  100. """
  101. if not isinstance(libraries, list):
  102. raise DistutilsSetupError, \
  103. "'libraries' option must be a list of tuples"
  104. for lib in libraries:
  105. if not isinstance(lib, tuple) and len(lib) != 2:
  106. raise DistutilsSetupError, \
  107. "each element of 'libraries' must a 2-tuple"
  108. name, build_info = lib
  109. if not isinstance(name, str):
  110. raise DistutilsSetupError, \
  111. "first element of each tuple in 'libraries' " + \
  112. "must be a string (the library name)"
  113. if '/' in name or (os.sep != '/' and os.sep in name):
  114. raise DistutilsSetupError, \
  115. ("bad library name '%s': " +
  116. "may not contain directory separators") % \
  117. lib[0]
  118. if not isinstance(build_info, dict):
  119. raise DistutilsSetupError, \
  120. "second element of each tuple in 'libraries' " + \
  121. "must be a dictionary (build info)"
  122. def get_library_names(self):
  123. # Assume the library list is valid -- 'check_library_list()' is
  124. # called from 'finalize_options()', so it should be!
  125. if not self.libraries:
  126. return None
  127. lib_names = []
  128. for (lib_name, build_info) in self.libraries:
  129. lib_names.append(lib_name)
  130. return lib_names
  131. def get_source_files(self):
  132. self.check_library_list(self.libraries)
  133. filenames = []
  134. for (lib_name, build_info) in self.libraries:
  135. sources = build_info.get('sources')
  136. if sources is None or not isinstance(sources, (list, tuple)):
  137. raise DistutilsSetupError, \
  138. ("in 'libraries' option (library '%s'), "
  139. "'sources' must be present and must be "
  140. "a list of source filenames") % lib_name
  141. filenames.extend(sources)
  142. return filenames
  143. def build_libraries(self, libraries):
  144. for (lib_name, build_info) in libraries:
  145. sources = build_info.get('sources')
  146. if sources is None or not isinstance(sources, (list, tuple)):
  147. raise DistutilsSetupError, \
  148. ("in 'libraries' option (library '%s'), " +
  149. "'sources' must be present and must be " +
  150. "a list of source filenames") % lib_name
  151. sources = list(sources)
  152. log.info("building '%s' library", lib_name)
  153. # First, compile the source code to object files in the library
  154. # directory. (This should probably change to putting object
  155. # files in a temporary build directory.)
  156. macros = build_info.get('macros')
  157. include_dirs = build_info.get('include_dirs')
  158. objects = self.compiler.compile(sources,
  159. output_dir=self.build_temp,
  160. macros=macros,
  161. include_dirs=include_dirs,
  162. debug=self.debug)
  163. # Now "link" the object files together into a static library.
  164. # (On Unix at least, this isn't really linking -- it just
  165. # builds an archive. Whatever.)
  166. self.compiler.create_static_lib(objects, lib_name,
  167. output_dir=self.build_clib,
  168. debug=self.debug)