| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | """distutils.command.config
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Implements the Distutils 'config' command, a (mostly) empty command class | 
					
						
							|  |  |  | that exists mainly to be sub-classed by specific module distributions and | 
					
						
							|  |  |  | applications.  The idea is that while every "config" command is different, | 
					
						
							|  |  |  | at least they're all named the same, and users always see "config" in the | 
					
						
							|  |  |  | list of standard commands.  Also, this is a good place to put common | 
					
						
							|  |  |  | configure-like tasks: "try to compile this C code", or "figure out where | 
					
						
							|  |  |  | this header file lives". | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __revision__ = "$Id$" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | import sys, os, re | 
					
						
							| 
									
										
										
										
											2009-04-12 16:49:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | from distutils.core import Command | 
					
						
							|  |  |  | from distutils.errors import DistutilsExecError | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | from distutils.sysconfig import customize_compiler | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  | from distutils import log | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  | LANG_EXT = {"c": ".c", "c++": ".cxx"} | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  | class config(Command): | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     description = "prepare to build" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     user_options = [ | 
					
						
							|  |  |  |         ('compiler=', None, | 
					
						
							|  |  |  |          "specify the compiler type"), | 
					
						
							|  |  |  |         ('cc=', None, | 
					
						
							|  |  |  |          "specify the compiler executable"), | 
					
						
							|  |  |  |         ('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"), | 
					
						
							|  |  |  |         ('libraries=', 'l', | 
					
						
							|  |  |  |          "external C libraries to link with"), | 
					
						
							|  |  |  |         ('library-dirs=', 'L', | 
					
						
							|  |  |  |          "directories to search for external C libraries"), | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ('noisy', None, | 
					
						
							|  |  |  |          "show every action (compile, link, run, ...) taken"), | 
					
						
							|  |  |  |         ('dump-source', None, | 
					
						
							|  |  |  |          "dump generated source files before attempting to compile them"), | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # The three standard command methods: since the "config" command | 
					
						
							|  |  |  |     # does nothing by default, these are empty. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def initialize_options(self): | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         self.compiler = None | 
					
						
							|  |  |  |         self.cc = None | 
					
						
							|  |  |  |         self.include_dirs = None | 
					
						
							|  |  |  |         self.libraries = None | 
					
						
							|  |  |  |         self.library_dirs = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         # maximal output for now | 
					
						
							|  |  |  |         self.noisy = 1 | 
					
						
							|  |  |  |         self.dump_source = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # list of temporary files generated along-the-way that we have | 
					
						
							|  |  |  |         # to clean at some point | 
					
						
							|  |  |  |         self.temp_files = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def finalize_options(self): | 
					
						
							| 
									
										
										
										
											2000-10-14 03:40:20 +00:00
										 |  |  |         if self.include_dirs is None: | 
					
						
							|  |  |  |             self.include_dirs = self.distribution.include_dirs or [] | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |         elif isinstance(self.include_dirs, str): | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |             self.include_dirs = self.include_dirs.split(os.pathsep) | 
					
						
							| 
									
										
										
										
											2000-10-14 03:40:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if self.libraries is None: | 
					
						
							|  |  |  |             self.libraries = [] | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |         elif isinstance(self.libraries, str): | 
					
						
							| 
									
										
										
										
											2000-10-14 03:40:20 +00:00
										 |  |  |             self.libraries = [self.libraries] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.library_dirs is None: | 
					
						
							|  |  |  |             self.library_dirs = [] | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |         elif isinstance(self.library_dirs, str): | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |             self.library_dirs = self.library_dirs.split(os.pathsep) | 
					
						
							| 
									
										
										
										
											2000-10-14 03:40:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def run(self): | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Utility methods for actual "config" commands.  The interfaces are | 
					
						
							|  |  |  |     # loosely based on Autoconf macros of similar names.  Sub-classes | 
					
						
							|  |  |  |     # may use these freely. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def _check_compiler(self): | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         """Check that 'self.compiler' really is a CCompiler object;
 | 
					
						
							|  |  |  |         if not, make it one. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         # We do this late, and only on-demand, because this is an expensive | 
					
						
							|  |  |  |         # import. | 
					
						
							|  |  |  |         from distutils.ccompiler import CCompiler, new_compiler | 
					
						
							|  |  |  |         if not isinstance(self.compiler, CCompiler): | 
					
						
							| 
									
										
										
										
											2000-09-30 18:27:54 +00:00
										 |  |  |             self.compiler = new_compiler(compiler=self.compiler, | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |                                          dry_run=self.dry_run, force=1) | 
					
						
							| 
									
										
										
										
											2003-02-18 01:28:51 +00:00
										 |  |  |             customize_compiler(self.compiler) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |             if self.include_dirs: | 
					
						
							|  |  |  |                 self.compiler.set_include_dirs(self.include_dirs) | 
					
						
							|  |  |  |             if self.libraries: | 
					
						
							|  |  |  |                 self.compiler.set_libraries(self.libraries) | 
					
						
							|  |  |  |             if self.library_dirs: | 
					
						
							|  |  |  |                 self.compiler.set_library_dirs(self.library_dirs) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def _gen_temp_sourcefile(self, body, headers, lang): | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         filename = "_configtest" + LANG_EXT[lang] | 
					
						
							|  |  |  |         file = open(filename, "w") | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         if headers: | 
					
						
							|  |  |  |             for header in headers: | 
					
						
							|  |  |  |                 file.write("#include <%s>\n" % header) | 
					
						
							|  |  |  |             file.write("\n") | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         file.write(body) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         if body[-1] != "\n": | 
					
						
							|  |  |  |             file.write("\n") | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         file.close() | 
					
						
							|  |  |  |         return filename | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def _preprocess(self, body, headers, include_dirs, lang): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         src = self._gen_temp_sourcefile(body, headers, lang) | 
					
						
							|  |  |  |         out = "_configtest.i" | 
					
						
							|  |  |  |         self.temp_files.extend([src, out]) | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         self.compiler.preprocess(src, out, include_dirs=include_dirs) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         return (src, out) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def _compile(self, body, headers, include_dirs, lang): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         src = self._gen_temp_sourcefile(body, headers, lang) | 
					
						
							|  |  |  |         if self.dump_source: | 
					
						
							|  |  |  |             dump_file(src, "compiling '%s':" % src) | 
					
						
							|  |  |  |         (obj,) = self.compiler.object_filenames([src]) | 
					
						
							|  |  |  |         self.temp_files.extend([src, obj]) | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         self.compiler.compile([src], include_dirs=include_dirs) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         return (src, obj) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 15:07:31 +00:00
										 |  |  |     def _link(self, body, headers, include_dirs, libraries, library_dirs, | 
					
						
							|  |  |  |               lang): | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         (src, obj) = self._compile(body, headers, include_dirs, lang) | 
					
						
							| 
									
										
										
										
											2001-12-06 21:01:19 +00:00
										 |  |  |         prog = os.path.splitext(os.path.basename(src))[0] | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         self.compiler.link_executable([obj], prog, | 
					
						
							|  |  |  |                                       libraries=libraries, | 
					
						
							| 
									
										
											  
											
												This patch fixes the following bugs:
[#413582] g++ must be called for c++ extensions
[#454030] distutils cannot link C++ code with GCC
topdir = "Lib/distutils"
* bcppcompiler.py
  (BCPPCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (BCPPCompiler.link): Included target_lang parameter.
* msvccompiler.py
  (MSVCCompiler.create_static_lib): Fixed prototype, removing extra_preargs
  and extra_postargs parameters. Included target_lang parameter.
  (MSVCCompiler.link): Included target_lang parameter.
* ccompiler.py
  (CCompiler): New language_map and language_order attributes, used by
  CCompiler.detect_language().
  (CCompiler.detect_language): New method, will return the language of
  a given source, or list of sources. Individual source language is
  detected using the language_map dict. When mixed sources are used,
  language_order will stablish the language precedence.
  (CCompiler.create_static_lib, CCompiler.link, CCompiler.link_executable,
   CCompiler.link_shared_object, CCompiler.link_shared_lib):
  Inlcuded target_lang parameter.
* cygwinccompiler.py
  (CygwinCCompiler.link): Included target_lang parameter.
* emxccompiler.py
  (EMXCCompiler.link): Included target_lang parameter.
* mwerkscompiler.py
  (MWerksCompiler.link): Included target_lang parameter.
* extension.py
  (Extension.__init__): New 'language' parameter/attribute, initialized
  to None by default. If provided will overlap the automatic detection
  made by CCompiler.detect_language(), in build_ext command.
* sysconfig.py
  (customize_compiler): Check Makefile for CXX option, and also the
  environment variable CXX. Use the resulting value in the 'compiler_cxx'
  parameter of compiler.set_executables().
* unixccompiler.py
  (UnixCCompiler): Included 'compiler_cxx' in executables dict, defaulting
  to 'cc'.
  (UnixCCompiler.create_static_lib): Included target_lang parameter.
  (UnixCCompiler.link): Included target_lang parameter, and made
  linker command use compiler_cxx, if target_lang is 'c++'.
* command/build_ext.py
  (build_ext.build_extension): Pass new ext.language attribute
  to compiler.link_shared_object()'s target_lang parameter. If
  ext.language is not provided, detect language using
  compiler.detect_language(sources) instead.
* command/config.py
  (config._link): Pass already available lang parameter as target_lang
  parameter of compiler.link_executable().
											
										 
											2002-11-05 16:12:02 +00:00
										 |  |  |                                       library_dirs=library_dirs, | 
					
						
							|  |  |  |                                       target_lang=lang) | 
					
						
							| 
									
										
										
										
											2001-08-16 14:08:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-03 11:43:54 +00:00
										 |  |  |         if self.compiler.exe_extension is not None: | 
					
						
							|  |  |  |             prog = prog + self.compiler.exe_extension | 
					
						
							| 
									
										
										
										
											2001-08-16 14:08:02 +00:00
										 |  |  |         self.temp_files.append(prog) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         return (src, obj, prog) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def _clean(self, *filenames): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         if not filenames: | 
					
						
							|  |  |  |             filenames = self.temp_files | 
					
						
							|  |  |  |             self.temp_files = [] | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         log.info("removing: %s", ' '.join(filenames)) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         for filename in filenames: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 os.remove(filename) | 
					
						
							|  |  |  |             except OSError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # XXX these ignore the dry-run flag: what to do, what to do? even if | 
					
						
							|  |  |  |     # you want a dry-run build, you still need some sort of configuration | 
					
						
							|  |  |  |     # info.  My inclination is to make it up to the real config command to | 
					
						
							|  |  |  |     # consult 'dry_run', and assume a default (minimal) configuration if | 
					
						
							|  |  |  |     # true.  The problem with trying to do it here is that you'd have to | 
					
						
							|  |  |  |     # return either true or false from all the 'try' methods, neither of | 
					
						
							|  |  |  |     # which is correct. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |     # XXX need access to the header search path and maybe default macros. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def try_cpp(self, body=None, headers=None, include_dirs=None, lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Construct a source file from 'body' (a string containing lines
 | 
					
						
							|  |  |  |         of C/C++ code) and 'headers' (a list of header files to include) | 
					
						
							|  |  |  |         and run it through the preprocessor.  Return true if the | 
					
						
							|  |  |  |         preprocessor succeeded, false if there were any errors. | 
					
						
							|  |  |  |         ('body' probably isn't of much use, but what the heck.) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         from distutils.ccompiler import CompileError | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         ok = True | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2001-08-16 13:56:40 +00:00
										 |  |  |             self._preprocess(body, headers, include_dirs, lang) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         except CompileError: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = False | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self._clean() | 
					
						
							|  |  |  |         return ok | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 15:07:31 +00:00
										 |  |  |     def search_cpp(self, pattern, body=None, headers=None, include_dirs=None, | 
					
						
							|  |  |  |                    lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Construct a source file (just like 'try_cpp()'), run it through
 | 
					
						
							|  |  |  |         the preprocessor, and return true if any line of the output matches | 
					
						
							|  |  |  |         'pattern'.  'pattern' should either be a compiled regex object or a | 
					
						
							|  |  |  |         string containing a regex.  If both 'body' and 'headers' are None, | 
					
						
							|  |  |  |         preprocesses an empty file -- which can be useful to determine the | 
					
						
							|  |  |  |         symbols the preprocessor and compiler set by default. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							| 
									
										
										
										
											2009-04-12 16:34:34 +00:00
										 |  |  |         src, out = self._preprocess(body, headers, include_dirs, lang) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |         if isinstance(pattern, str): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |             pattern = re.compile(pattern) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         file = open(out) | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         match = False | 
					
						
							|  |  |  |         while True: | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |             line = file.readline() | 
					
						
							|  |  |  |             if line == '': | 
					
						
							|  |  |  |                 break | 
					
						
							| 
									
										
										
										
											2001-08-16 13:56:40 +00:00
										 |  |  |             if pattern.search(line): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 match = True | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |                 break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         file.close() | 
					
						
							|  |  |  |         self._clean() | 
					
						
							|  |  |  |         return match | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def try_compile(self, body, headers=None, include_dirs=None, lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Try to compile a source file built from 'body' and 'headers'.
 | 
					
						
							|  |  |  |         Return true on success, false otherwise. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         from distutils.ccompiler import CompileError | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2001-08-16 13:56:40 +00:00
										 |  |  |             self._compile(body, headers, include_dirs, lang) | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = True | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         except CompileError: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = False | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |         log.info(ok and "success!" or "failure.") | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         self._clean() | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         return ok | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 15:07:31 +00:00
										 |  |  |     def try_link(self, body, headers=None, include_dirs=None, libraries=None, | 
					
						
							|  |  |  |                  library_dirs=None, lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Try to compile and link a source file, built from 'body' and
 | 
					
						
							|  |  |  |         'headers', to executable form.  Return true on success, false | 
					
						
							|  |  |  |         otherwise. | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         from distutils.ccompiler import CompileError, LinkError | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |             self._link(body, headers, include_dirs, | 
					
						
							|  |  |  |                        libraries, library_dirs, lang) | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = True | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         except (CompileError, LinkError): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = False | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |         log.info(ok and "success!" or "failure.") | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         self._clean() | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         return ok | 
					
						
							| 
									
										
										
										
											2001-12-06 21:01:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-12 15:07:31 +00:00
										 |  |  |     def try_run(self, body, headers=None, include_dirs=None, libraries=None, | 
					
						
							|  |  |  |                 library_dirs=None, lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Try to compile, link to an executable, and run a program
 | 
					
						
							|  |  |  |         built from 'body' and 'headers'.  Return true on success, false | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         otherwise. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         from distutils.ccompiler import CompileError, LinkError | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2001-08-13 13:56:24 +00:00
										 |  |  |             src, obj, exe = self._link(body, headers, include_dirs, | 
					
						
							|  |  |  |                                        libraries, library_dirs, lang) | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |             self.spawn([exe]) | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = True | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         except (CompileError, LinkError, DistutilsExecError): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |             ok = False | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-04 20:14:43 +00:00
										 |  |  |         log.info(ok and "success!" or "failure.") | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         self._clean() | 
					
						
							| 
									
										
										
										
											2000-06-06 02:57:07 +00:00
										 |  |  |         return ok | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # -- High-level methods -------------------------------------------- | 
					
						
							|  |  |  |     # (these are the ones that are actually likely to be useful | 
					
						
							|  |  |  |     # when implementing a real-world config command!) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def check_func(self, func, headers=None, include_dirs=None, | 
					
						
							|  |  |  |                    libraries=None, library_dirs=None, decl=0, call=0): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Determine if function 'func' is available by constructing a
 | 
					
						
							|  |  |  |         source file that refers to 'func', and compiles and links it. | 
					
						
							|  |  |  |         If everything succeeds, returns true; otherwise returns false. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The constructed source file starts out by including the header | 
					
						
							|  |  |  |         files listed in 'headers'.  If 'decl' is true, it then declares | 
					
						
							|  |  |  |         'func' (as "int func()"); you probably shouldn't supply 'headers' | 
					
						
							|  |  |  |         and set 'decl' true in the same call, or you might get errors about | 
					
						
							|  |  |  |         a conflicting declarations for 'func'.  Finally, the constructed | 
					
						
							|  |  |  |         'main()' function either references 'func' or (if 'call' is true) | 
					
						
							|  |  |  |         calls it.  'libraries' and 'library_dirs' are used when | 
					
						
							|  |  |  |         linking. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							|  |  |  |         body = [] | 
					
						
							|  |  |  |         if decl: | 
					
						
							|  |  |  |             body.append("int %s ();" % func) | 
					
						
							|  |  |  |         body.append("int main () {") | 
					
						
							|  |  |  |         if call: | 
					
						
							|  |  |  |             body.append("  %s();" % func) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             body.append("  %s;" % func) | 
					
						
							|  |  |  |         body.append("}") | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         body = "\n".join(body) + "\n" | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         return self.try_link(body, headers, include_dirs, | 
					
						
							|  |  |  |                              libraries, library_dirs) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def check_lib(self, library, library_dirs=None, headers=None, | 
					
						
							|  |  |  |                   include_dirs=None, other_libraries=[]): | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         """Determine if 'library' is available to be linked against,
 | 
					
						
							|  |  |  |         without actually checking that any particular symbols are provided | 
					
						
							|  |  |  |         by it.  'headers' will be used in constructing the source file to | 
					
						
							|  |  |  |         be compiled, but the only effect of this is to check if all the | 
					
						
							| 
									
										
										
										
											2000-10-14 03:56:42 +00:00
										 |  |  |         header files listed are available.  Any libraries listed in | 
					
						
							|  |  |  |         'other_libraries' will be included in the link, in case 'library' | 
					
						
							|  |  |  |         has symbols that depend on other libraries. | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         self._check_compiler() | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |         return self.try_link("int main (void) { }", headers, include_dirs, | 
					
						
							|  |  |  |                              [library] + other_libraries, library_dirs) | 
					
						
							| 
									
										
										
										
											2000-06-27 01:21:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |     def check_header(self, header, include_dirs=None, library_dirs=None, | 
					
						
							|  |  |  |                      lang="c"): | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |         """Determine if the system header file named by 'header_file'
 | 
					
						
							|  |  |  |         exists and can be found by the preprocessor; return true if so, | 
					
						
							|  |  |  |         false otherwise. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-09-09 12:10:00 +00:00
										 |  |  |         return self.try_cpp(body="/* No body */", headers=[header], | 
					
						
							|  |  |  |                             include_dirs=include_dirs) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  | def dump_file(filename, head=None): | 
					
						
							| 
									
										
										
										
											2009-04-12 14:57:46 +00:00
										 |  |  |     """Dumps a file content into log.info.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If head is not None, will be dumped before the file content. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |     if head is None: | 
					
						
							| 
									
										
										
										
											2009-04-12 14:57:46 +00:00
										 |  |  |         log.info('%s' % filename) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2009-04-12 14:57:46 +00:00
										 |  |  |         log.info(head) | 
					
						
							| 
									
										
										
										
											2000-06-21 03:00:50 +00:00
										 |  |  |     file = open(filename) | 
					
						
							| 
									
										
										
										
											2009-04-12 14:57:46 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         log.info(file.read()) | 
					
						
							|  |  |  |     finally: | 
					
						
							|  |  |  |         file.close() |