| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | """distutils.emxccompiler
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Provides the EMXCCompiler class, a subclass of UnixCCompiler that | 
					
						
							|  |  |  | handles the EMX port of the GNU C compiler to OS/2. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # issues: | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # * OS/2 insists that DLLs can have names no longer than 8 characters | 
					
						
							|  |  |  | #   We put export_symbols in a def-file, as though the DLL can have | 
					
						
							|  |  |  | #   an arbitrary length name, but truncate the output filename. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # * only use OMF objects and use LINK386 as the linker (-Zomf) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # * always build for multithreading (-Zmt) as the accompanying OS/2 port | 
					
						
							|  |  |  | #   of Python is only distributed with threads enabled. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # tested configurations: | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | # * EMX gcc 2.81/EMX 0.9d fix03 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | import os,sys,copy | 
					
						
							|  |  |  | from distutils.ccompiler import gen_preprocess_options, gen_lib_options | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | from distutils.unixccompiler import UnixCCompiler | 
					
						
							|  |  |  | from distutils.file_util import write_file | 
					
						
							|  |  |  | from distutils.errors import DistutilsExecError, CompileError, UnknownFileError | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  | from distutils import log | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class EMXCCompiler (UnixCCompiler): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     compiler_type = 'emx' | 
					
						
							|  |  |  |     obj_extension = ".obj" | 
					
						
							|  |  |  |     static_lib_extension = ".lib" | 
					
						
							|  |  |  |     shared_lib_extension = ".dll" | 
					
						
							|  |  |  |     static_lib_format = "%s%s" | 
					
						
							|  |  |  |     shared_lib_format = "%s%s" | 
					
						
							|  |  |  |     res_extension = ".res"      # compiled resource file | 
					
						
							|  |  |  |     exe_extension = ".exe" | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     def __init__ (self, | 
					
						
							|  |  |  |                   verbose=0, | 
					
						
							|  |  |  |                   dry_run=0, | 
					
						
							|  |  |  |                   force=0): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         UnixCCompiler.__init__ (self, verbose, dry_run, force) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         (status, details) = check_config_h() | 
					
						
							|  |  |  |         self.debug_print("Python's GCC status: %s (details: %s)" % | 
					
						
							|  |  |  |                          (status, details)) | 
					
						
							|  |  |  |         if status is not CONFIG_H_OK: | 
					
						
							|  |  |  |             self.warn( | 
					
						
							|  |  |  |                 "Python's pyconfig.h doesn't seem to support your compiler.  " + | 
					
						
							|  |  |  |                 ("Reason: %s." % details) + | 
					
						
							|  |  |  |                 "Compiling may fail because of undefined preprocessor macros.") | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |         (self.gcc_version, self.ld_version) = \ | 
					
						
							|  |  |  |             get_versions() | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         self.debug_print(self.compiler_type + ": gcc %s, ld %s\n" % | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |                          (self.gcc_version, | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |                           self.ld_version) ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # Hard-code GCC because that's what this is all about. | 
					
						
							|  |  |  |         # XXX optimization, warnings etc. should be customizable. | 
					
						
							| 
									
										
										
										
											2003-12-02 12:17:59 +00:00
										 |  |  |         self.set_executables(compiler='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall', | 
					
						
							|  |  |  |                              compiler_so='gcc -Zomf -Zmt -O3 -fomit-frame-pointer -mprobe -Wall', | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |                              linker_exe='gcc -Zomf -Zmt -Zcrtdll', | 
					
						
							|  |  |  |                              linker_so='gcc -Zomf -Zmt -Zcrtdll -Zdll') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # want the gcc library statically linked (so that we don't have | 
					
						
							|  |  |  |         # to distribute a version dependent on the compiler we have) | 
					
						
							|  |  |  |         self.dll_libraries=["gcc"] | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     # __init__ () | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-04 06:17:08 +00:00
										 |  |  |     def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): | 
					
						
							| 
									
										
										
										
											2002-06-18 18:48:55 +00:00
										 |  |  |         if ext == '.rc': | 
					
						
							|  |  |  |             # gcc requires '.rc' compiled to binary ('.res') files !!! | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 self.spawn(["rc", "-r", src]) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |             except DistutilsExecError as msg: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 raise CompileError(msg) | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |         else: # for other files use the C-compiler | 
					
						
							| 
									
										
										
										
											2002-06-18 18:48:55 +00:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] + | 
					
						
							|  |  |  |                            extra_postargs) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |             except DistutilsExecError as msg: | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 raise CompileError(msg) | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def link (self, | 
					
						
							|  |  |  |               target_desc, | 
					
						
							|  |  |  |               objects, | 
					
						
							|  |  |  |               output_filename, | 
					
						
							|  |  |  |               output_dir=None, | 
					
						
							|  |  |  |               libraries=None, | 
					
						
							|  |  |  |               library_dirs=None, | 
					
						
							|  |  |  |               runtime_library_dirs=None, | 
					
						
							|  |  |  |               export_symbols=None, | 
					
						
							|  |  |  |               debug=0, | 
					
						
							|  |  |  |               extra_preargs=None, | 
					
						
							|  |  |  |               extra_postargs=None, | 
					
						
							| 
									
										
											  
											
												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
										 |  |  |               build_temp=None, | 
					
						
							|  |  |  |               target_lang=None): | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         # use separate copies, so we can modify the lists | 
					
						
							|  |  |  |         extra_preargs = copy.copy(extra_preargs or []) | 
					
						
							|  |  |  |         libraries = copy.copy(libraries or []) | 
					
						
							|  |  |  |         objects = copy.copy(objects or []) | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         # Additional libraries | 
					
						
							|  |  |  |         libraries.extend(self.dll_libraries) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # handle export symbols by creating a def-file | 
					
						
							|  |  |  |         # with executables this only works with gcc/ld as linker | 
					
						
							|  |  |  |         if ((export_symbols is not None) and | 
					
						
							|  |  |  |             (target_desc != self.EXECUTABLE)): | 
					
						
							|  |  |  |             # (The linker doesn't do anything if output is up-to-date. | 
					
						
							|  |  |  |             # So it would probably better to check if we really need this, | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |             # but for this we had to insert some unchanged parts of | 
					
						
							|  |  |  |             # UnixCCompiler, and this is not what we want.) | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |             # we want to put some files in the same directory as the | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |             # object files are, build_temp doesn't help much | 
					
						
							|  |  |  |             # where are the object files | 
					
						
							|  |  |  |             temp_dir = os.path.dirname(objects[0]) | 
					
						
							|  |  |  |             # name of dll to give the helper files the same base name | 
					
						
							|  |  |  |             (dll_name, dll_extension) = os.path.splitext( | 
					
						
							|  |  |  |                 os.path.basename(output_filename)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # generate the filenames for these files | 
					
						
							|  |  |  |             def_file = os.path.join(temp_dir, dll_name + ".def") | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |             # Generate .def file | 
					
						
							|  |  |  |             contents = [ | 
					
						
							| 
									
										
										
										
											2002-06-04 20:26:44 +00:00
										 |  |  |                 "LIBRARY %s INITINSTANCE TERMINSTANCE" % \ | 
					
						
							|  |  |  |                 os.path.splitext(os.path.basename(output_filename))[0], | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |                 "DATA MULTIPLE NONSHARED", | 
					
						
							|  |  |  |                 "EXPORTS"] | 
					
						
							|  |  |  |             for sym in export_symbols: | 
					
						
							|  |  |  |                 contents.append('  "%s"' % sym) | 
					
						
							|  |  |  |             self.execute(write_file, (def_file, contents), | 
					
						
							|  |  |  |                          "writing %s" % def_file) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             # next add options for def-file and to creating import libraries | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |             # for gcc/ld the def-file is specified as any other object files | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |             objects.append(def_file) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         #end: if ((export_symbols is not None) and | 
					
						
							|  |  |  |         #        (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         # who wants symbols and a many times larger output file | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |         # should explicitly switch the debug mode on | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         # otherwise we let dllwrap/ld strip the output file | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |         # (On my machine: 10KB < stripped_file < ??100KB | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         #   unstripped_file = stripped_file + XXX KB | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |         #  ( XXX=254 for a typical python extension)) | 
					
						
							|  |  |  |         if not debug: | 
					
						
							|  |  |  |             extra_preargs.append("-s") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         UnixCCompiler.link(self, | 
					
						
							|  |  |  |                            target_desc, | 
					
						
							|  |  |  |                            objects, | 
					
						
							|  |  |  |                            output_filename, | 
					
						
							|  |  |  |                            output_dir, | 
					
						
							|  |  |  |                            libraries, | 
					
						
							|  |  |  |                            library_dirs, | 
					
						
							|  |  |  |                            runtime_library_dirs, | 
					
						
							|  |  |  |                            None, # export_symbols, we do this in our def-file | 
					
						
							|  |  |  |                            debug, | 
					
						
							|  |  |  |                            extra_preargs, | 
					
						
							|  |  |  |                            extra_postargs, | 
					
						
							| 
									
										
											  
											
												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
										 |  |  |                            build_temp, | 
					
						
							|  |  |  |                            target_lang) | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     # link () | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # -- Miscellaneous methods ----------------------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-04 06:21:25 +00:00
										 |  |  |     # override the object_filenames method from CCompiler to | 
					
						
							|  |  |  |     # support rc and res-files | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     def object_filenames (self, | 
					
						
							|  |  |  |                           source_filenames, | 
					
						
							|  |  |  |                           strip_dir=0, | 
					
						
							|  |  |  |                           output_dir=''): | 
					
						
							|  |  |  |         if output_dir is None: output_dir = '' | 
					
						
							|  |  |  |         obj_names = [] | 
					
						
							|  |  |  |         for src_name in source_filenames: | 
					
						
							|  |  |  |             # use normcase to make sure '.rc' is really '.rc' and not '.RC' | 
					
						
							|  |  |  |             (base, ext) = os.path.splitext (os.path.normcase(src_name)) | 
					
						
							|  |  |  |             if ext not in (self.src_extensions + ['.rc']): | 
					
						
							| 
									
										
										
										
											2007-08-30 03:52:21 +00:00
										 |  |  |                 raise UnknownFileError("unknown file type '%s' (from '%s')" % \ | 
					
						
							|  |  |  |                       (ext, src_name)) | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |             if strip_dir: | 
					
						
							|  |  |  |                 base = os.path.basename (base) | 
					
						
							|  |  |  |             if ext == '.rc': | 
					
						
							|  |  |  |                 # these need to be compiled to object files | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |                 obj_names.append (os.path.join (output_dir, | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |                                             base + self.res_extension)) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 obj_names.append (os.path.join (output_dir, | 
					
						
							|  |  |  |                                             base + self.obj_extension)) | 
					
						
							|  |  |  |         return obj_names | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # object_filenames () | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-04 06:21:25 +00:00
										 |  |  |     # override the find_library_file method from UnixCCompiler | 
					
						
							|  |  |  |     # to deal with file naming/searching differences | 
					
						
							|  |  |  |     def find_library_file(self, dirs, lib, debug=0): | 
					
						
							|  |  |  |         shortlib = '%s.lib' % lib | 
					
						
							|  |  |  |         longlib = 'lib%s.lib' % lib    # this form very rare | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # get EMX's default library directory search path | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             emx_dirs = os.environ['LIBRARY_PATH'].split(';') | 
					
						
							|  |  |  |         except KeyError: | 
					
						
							|  |  |  |             emx_dirs = [] | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-04 06:21:25 +00:00
										 |  |  |         for dir in dirs + emx_dirs: | 
					
						
							|  |  |  |             shortlibp = os.path.join(dir, shortlib) | 
					
						
							|  |  |  |             longlibp = os.path.join(dir, longlib) | 
					
						
							|  |  |  |             if os.path.exists(shortlibp): | 
					
						
							|  |  |  |                 return shortlibp | 
					
						
							|  |  |  |             elif os.path.exists(longlibp): | 
					
						
							|  |  |  |                 return longlibp | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-04 06:21:25 +00:00
										 |  |  |         # Oops, didn't find it in *any* of 'dirs' | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  | # class EMXCCompiler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Because these compilers aren't configured in Python's pyconfig.h file by | 
					
						
							|  |  |  | # default, we should at least warn the user if he is using a unmodified | 
					
						
							|  |  |  | # version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CONFIG_H_OK = "ok" | 
					
						
							|  |  |  | CONFIG_H_NOTOK = "not ok" | 
					
						
							|  |  |  | CONFIG_H_UNCERTAIN = "uncertain" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def check_config_h(): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Check if the current Python installation (specifically, pyconfig.h)
 | 
					
						
							|  |  |  |     appears amenable to building extensions with GCC.  Returns a tuple | 
					
						
							|  |  |  |     (status, details), where 'status' is one of the following constants: | 
					
						
							|  |  |  |       CONFIG_H_OK | 
					
						
							|  |  |  |         all is well, go ahead and compile | 
					
						
							|  |  |  |       CONFIG_H_NOTOK | 
					
						
							|  |  |  |         doesn't look good | 
					
						
							|  |  |  |       CONFIG_H_UNCERTAIN | 
					
						
							|  |  |  |         not sure -- unable to read pyconfig.h | 
					
						
							|  |  |  |     'details' is a human-readable string explaining the situation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Note there are two ways to conclude "OK": either 'sys.version' contains | 
					
						
							|  |  |  |     the string "GCC" (implying that this Python was built with GCC), or the | 
					
						
							|  |  |  |     installed "pyconfig.h" contains the string "__GNUC__". | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # XXX since this function also checks sys.version, it's not strictly a | 
					
						
							|  |  |  |     # "pyconfig.h" check -- should probably be renamed... | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     from distutils import sysconfig | 
					
						
							|  |  |  |     # if sys.version contains GCC then python was compiled with | 
					
						
							|  |  |  |     # GCC, and the pyconfig.h file should be OK | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |     if sys.version.find("GCC") >= 0: | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         return (CONFIG_H_OK, "sys.version mentions 'GCC'") | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     fn = sysconfig.get_config_h_filename() | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         # It would probably better to read single lines to search. | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  |         # But we do this only once, and it is fast enough | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         f = open(fn) | 
					
						
							| 
									
										
										
										
											2010-11-05 23:51:56 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             s = f.read() | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							| 
									
										
										
										
											2002-09-29 00:25:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |     except IOError as exc: | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |         # if we can't read this file, we cannot say it is wrong | 
					
						
							|  |  |  |         # the compiler will complain later about this file as missing | 
					
						
							|  |  |  |         return (CONFIG_H_UNCERTAIN, | 
					
						
							|  |  |  |                 "couldn't read '%s': %s" % (fn, exc.strerror)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         # "pyconfig.h" contains an "#ifdef __GNUC__" or something similar | 
					
						
							| 
									
										
										
										
											2007-04-17 08:48:32 +00:00
										 |  |  |         if s.find("__GNUC__") >= 0: | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |             return (CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return (CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_versions(): | 
					
						
							|  |  |  |     """ Try to find out the versions of gcc and ld.
 | 
					
						
							|  |  |  |         If not possible it returns None for it. | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |     from distutils.version import StrictVersion | 
					
						
							|  |  |  |     from distutils.spawn import find_executable | 
					
						
							|  |  |  |     import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     gcc_exe = find_executable('gcc') | 
					
						
							|  |  |  |     if gcc_exe: | 
					
						
							|  |  |  |         out = os.popen(gcc_exe + ' -dumpversion','r') | 
					
						
							| 
									
										
										
										
											2010-11-05 23:51:56 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             out_string = out.read() | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             out.close() | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |         result = re.search('(\d+\.\d+\.\d+)', out_string, re.ASCII) | 
					
						
							|  |  |  |         if result: | 
					
						
							|  |  |  |             gcc_version = StrictVersion(result.group(1)) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             gcc_version = None | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         gcc_version = None | 
					
						
							| 
									
										
										
										
											2002-02-06 18:22:48 +00:00
										 |  |  |     # EMX ld has no way of reporting version number, and we use GCC | 
					
						
							|  |  |  |     # anyway - so we can link OMF DLLs | 
					
						
							| 
									
										
										
										
											2010-07-22 12:50:05 +00:00
										 |  |  |     ld_version = None | 
					
						
							|  |  |  |     return (gcc_version, ld_version) |