blob: 819e1a97be324b8dc01a886c826b74def384fe59 [file] [log] [blame]
Greg Ward7c6395a2000-06-21 03:33:03 +00001"""distutils.cygwinccompiler
2
Greg Wardf34506a2000-06-29 22:57:55 +00003Provides the CygwinCCompiler class, a subclass of UnixCCompiler that
4handles the Cygwin port of the GNU C compiler to Windows. It also contains
5the Mingw32CCompiler class which handles the mingw32 port of GCC (same as
6cygwin in no-cygwin mode).
Greg Ward7c6395a2000-06-21 03:33:03 +00007"""
8
Greg Wardbf5c7092000-08-02 01:31:56 +00009# problems:
10#
11# * if you use a msvc compiled python version (1.5.2)
12# 1. you have to insert a __GNUC__ section in its config.h
13# 2. you have to generate a import library for its dll
14# - create a def-file for python??.dll
15# - create a import library using
16# dlltool --dllname python15.dll --def python15.def \
17# --output-lib libpython15.a
18#
19# see also http://starship.python.net/crew/kernr/mingw32/Notes.html
20#
Fred Drakeb94b8492001-12-06 20:51:35 +000021# * We put export_symbols in a def-file, and don't use
Greg Wardbf5c7092000-08-02 01:31:56 +000022# --export-all-symbols because it doesn't worked reliable in some
23# tested configurations. And because other windows compilers also
24# need their symbols specified this no serious problem.
25#
26# tested configurations:
Fred Drakeb94b8492001-12-06 20:51:35 +000027#
28# * cygwin gcc 2.91.57/ld 2.9.4/dllwrap 0.2.4 works
Greg Wardbf5c7092000-08-02 01:31:56 +000029# (after patching python's config.h and for C++ some other include files)
30# see also http://starship.python.net/crew/kernr/mingw32/Notes.html
Fred Drakeb94b8492001-12-06 20:51:35 +000031# * mingw32 gcc 2.95.2/ld 2.9.4/dllwrap 0.2.4 works
32# (ld doesn't support -shared, so we use dllwrap)
Greg Wardbf5c7092000-08-02 01:31:56 +000033# * cygwin gcc 2.95.2/ld 2.10.90/dllwrap 2.10.90 works now
34# - its dllwrap doesn't work, there is a bug in binutils 2.10.90
Greg Ward7483d682000-09-01 01:24:31 +000035# see also http://sources.redhat.com/ml/cygwin/2000-06/msg01274.html
Jason Tishler21664d82003-04-14 12:51:26 +000036# - using gcc -mdll instead dllwrap doesn't work without -static because
37# it tries to link against dlls instead their import libraries. (If
38# it finds the dll first.)
39# By specifying -static we force ld to link against the import libraries,
40# this is windows standard and there are normally not the necessary symbols
41# in the dlls.
Fred Drakeb94b8492001-12-06 20:51:35 +000042# *** only the version of June 2000 shows these problems
Jason Tishler21664d82003-04-14 12:51:26 +000043# * cygwin gcc 3.2/ld 2.13.90 works
44# (ld supports -shared)
45# * mingw gcc 3.2/ld 2.13 works
46# (ld supports -shared)
Greg Wardbf5c7092000-08-02 01:31:56 +000047
Tarek Ziadé015c8102009-06-10 18:56:35 +000048import os
49import sys
50import copy
51from subprocess import Popen, PIPE
52import re
53
Greg Ward42406482000-09-27 02:08:14 +000054from distutils.ccompiler import gen_preprocess_options, gen_lib_options
Greg Ward7c6395a2000-06-21 03:33:03 +000055from distutils.unixccompiler import UnixCCompiler
Greg Wardbf5c7092000-08-02 01:31:56 +000056from distutils.file_util import write_file
Greg Ward42406482000-09-27 02:08:14 +000057from distutils.errors import DistutilsExecError, CompileError, UnknownFileError
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000058from distutils import log
Tarek Ziadé015c8102009-06-10 18:56:35 +000059from distutils.version import LooseVersion
60from distutils.spawn import find_executable
Greg Ward7c6395a2000-06-21 03:33:03 +000061
Christian Heimescbf3b5c2007-12-03 21:02:03 +000062def get_msvcr():
63 """Include the appropriate MSVC runtime library if Python was built
64 with MSVC 7.0 or later.
65 """
66 msc_pos = sys.version.find('MSC v.')
67 if msc_pos != -1:
68 msc_ver = sys.version[msc_pos+6:msc_pos+10]
69 if msc_ver == '1300':
70 # MSVC 7.0
71 return ['msvcr70']
72 elif msc_ver == '1310':
73 # MSVC 7.1
74 return ['msvcr71']
75 elif msc_ver == '1400':
76 # VS2005 / MSVC 8.0
77 return ['msvcr80']
78 elif msc_ver == '1500':
79 # VS2008 / MSVC 9.0
80 return ['msvcr90']
81 else:
Tarek Ziadéff543362009-06-11 09:25:41 +000082 raise ValueError("Unknown MS Compiler version %s " % msc_ver)
Christian Heimescbf3b5c2007-12-03 21:02:03 +000083
84
Tarek Ziadée653a7d2009-06-11 10:00:56 +000085class CygwinCCompiler(UnixCCompiler):
86 """ Handles the Cygwin port of the GNU C compiler to Windows.
87 """
Greg Ward7c6395a2000-06-21 03:33:03 +000088 compiler_type = 'cygwin'
Greg Wardb1dceae2000-08-13 00:43:56 +000089 obj_extension = ".o"
90 static_lib_extension = ".a"
91 shared_lib_extension = ".dll"
92 static_lib_format = "lib%s%s"
93 shared_lib_format = "%s%s"
94 exe_extension = ".exe"
Fred Drakeb94b8492001-12-06 20:51:35 +000095
Tarek Ziadée653a7d2009-06-11 10:00:56 +000096 def __init__(self, verbose=0, dry_run=0, force=0):
Greg Ward7c6395a2000-06-21 03:33:03 +000097
Tarek Ziadée653a7d2009-06-11 10:00:56 +000098 UnixCCompiler.__init__(self, verbose, dry_run, force)
Greg Ward7c6395a2000-06-21 03:33:03 +000099
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000100 status, details = check_config_h()
Greg Warde8e9d112000-08-13 01:18:55 +0000101 self.debug_print("Python's GCC status: %s (details: %s)" %
102 (status, details))
103 if status is not CONFIG_H_OK:
Greg Wardbf5c7092000-08-02 01:31:56 +0000104 self.warn(
Tim Peters182b5ac2004-07-18 06:16:08 +0000105 "Python's pyconfig.h doesn't seem to support your compiler. "
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000106 "Reason: %s. "
107 "Compiling may fail because of undefined preprocessor macros."
108 % details)
Fred Drakeb94b8492001-12-06 20:51:35 +0000109
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000110 self.gcc_version, self.ld_version, self.dllwrap_version = \
Greg Wardbf5c7092000-08-02 01:31:56 +0000111 get_versions()
Greg Wardb1dceae2000-08-13 00:43:56 +0000112 self.debug_print(self.compiler_type + ": gcc %s, ld %s, dllwrap %s\n" %
Fred Drakeb94b8492001-12-06 20:51:35 +0000113 (self.gcc_version,
114 self.ld_version,
Greg Wardbf5c7092000-08-02 01:31:56 +0000115 self.dllwrap_version) )
116
Jason Tishler21664d82003-04-14 12:51:26 +0000117 # ld_version >= "2.10.90" and < "2.13" should also be able to use
Greg Wardbf5c7092000-08-02 01:31:56 +0000118 # gcc -mdll instead of dllwrap
Fred Drakeb94b8492001-12-06 20:51:35 +0000119 # Older dllwraps had own version numbers, newer ones use the
Greg Wardbf5c7092000-08-02 01:31:56 +0000120 # same as the rest of binutils ( also ld )
121 # dllwrap 2.10.90 is buggy
Fred Drakeb94b8492001-12-06 20:51:35 +0000122 if self.ld_version >= "2.10.90":
Greg Ward42406482000-09-27 02:08:14 +0000123 self.linker_dll = "gcc"
Greg Wardbf5c7092000-08-02 01:31:56 +0000124 else:
Greg Ward42406482000-09-27 02:08:14 +0000125 self.linker_dll = "dllwrap"
Greg Wardbf5c7092000-08-02 01:31:56 +0000126
Jason Tishler21664d82003-04-14 12:51:26 +0000127 # ld_version >= "2.13" support -shared so use it instead of
128 # -mdll -static
129 if self.ld_version >= "2.13":
130 shared_option = "-shared"
131 else:
132 shared_option = "-mdll -static"
133
Greg Wardf34506a2000-06-29 22:57:55 +0000134 # Hard-code GCC because that's what this is all about.
135 # XXX optimization, warnings etc. should be customizable.
Greg Wardbf5c7092000-08-02 01:31:56 +0000136 self.set_executables(compiler='gcc -mcygwin -O -Wall',
137 compiler_so='gcc -mcygwin -mdll -O -Wall',
Hye-Shik Chang2400e932004-06-05 18:37:53 +0000138 compiler_cxx='g++ -mcygwin -O -Wall',
Greg Wardbf5c7092000-08-02 01:31:56 +0000139 linker_exe='gcc -mcygwin',
Jason Tishler21664d82003-04-14 12:51:26 +0000140 linker_so=('%s -mcygwin %s' %
141 (self.linker_dll, shared_option)))
Greg Ward7c6395a2000-06-21 03:33:03 +0000142
Fred Drakeb94b8492001-12-06 20:51:35 +0000143 # cygwin and mingw32 need different sets of libraries
Greg Wardbf5c7092000-08-02 01:31:56 +0000144 if self.gcc_version == "2.91.57":
145 # cygwin shouldn't need msvcrt, but without the dlls will crash
146 # (gcc version 2.91.57) -- perhaps something about initialization
147 self.dll_libraries=["msvcrt"]
Fred Drakeb94b8492001-12-06 20:51:35 +0000148 self.warn(
Greg Wardbf5c7092000-08-02 01:31:56 +0000149 "Consider upgrading to a newer version of gcc")
150 else:
Tim Peters6db15d72004-08-04 02:36:18 +0000151 # Include the appropriate MSVC runtime library if Python was built
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000152 # with MSVC 7.0 or later.
153 self.dll_libraries = get_msvcr()
Fred Drakeb94b8492001-12-06 20:51:35 +0000154
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000155 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Ezio Melotti13925002011-03-16 11:05:33 +0200156 """Compiles the source by spawning GCC and windres if needed."""
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000157 if ext == '.rc' or ext == '.res':
158 # gcc needs '.res' and '.rc' compiled to object files !!!
159 try:
160 self.spawn(["windres", "-i", src, "-o", obj])
Guido van Rossumb940e112007-01-10 16:19:56 +0000161 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000162 raise CompileError(msg)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000163 else: # for other files use the C-compiler
164 try:
165 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
166 extra_postargs)
Guido van Rossumb940e112007-01-10 16:19:56 +0000167 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000168 raise CompileError(msg)
Greg Ward42406482000-09-27 02:08:14 +0000169
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000170 def link(self, target_desc, objects, output_filename, output_dir=None,
171 libraries=None, library_dirs=None, runtime_library_dirs=None,
172 export_symbols=None, debug=0, extra_preargs=None,
173 extra_postargs=None, build_temp=None, target_lang=None):
174 """Link the objects."""
Greg Wardb1dceae2000-08-13 00:43:56 +0000175 # use separate copies, so we can modify the lists
176 extra_preargs = copy.copy(extra_preargs or [])
177 libraries = copy.copy(libraries or [])
Greg Ward42406482000-09-27 02:08:14 +0000178 objects = copy.copy(objects or [])
Fred Drakeb94b8492001-12-06 20:51:35 +0000179
Greg Wardbf5c7092000-08-02 01:31:56 +0000180 # Additional libraries
Greg Wardf34506a2000-06-29 22:57:55 +0000181 libraries.extend(self.dll_libraries)
Greg Wardbf5c7092000-08-02 01:31:56 +0000182
Greg Ward42406482000-09-27 02:08:14 +0000183 # handle export symbols by creating a def-file
184 # with executables this only works with gcc/ld as linker
185 if ((export_symbols is not None) and
186 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
187 # (The linker doesn't do anything if output is up-to-date.
188 # So it would probably better to check if we really need this,
Fred Drakeb94b8492001-12-06 20:51:35 +0000189 # but for this we had to insert some unchanged parts of
190 # UnixCCompiler, and this is not what we want.)
Greg Ward42406482000-09-27 02:08:14 +0000191
Fred Drakeb94b8492001-12-06 20:51:35 +0000192 # we want to put some files in the same directory as the
Greg Ward42406482000-09-27 02:08:14 +0000193 # object files are, build_temp doesn't help much
194 # where are the object files
195 temp_dir = os.path.dirname(objects[0])
196 # name of dll to give the helper files the same base name
197 (dll_name, dll_extension) = os.path.splitext(
198 os.path.basename(output_filename))
199
200 # generate the filenames for these files
Greg Wardbf5c7092000-08-02 01:31:56 +0000201 def_file = os.path.join(temp_dir, dll_name + ".def")
Greg Ward42406482000-09-27 02:08:14 +0000202 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
Fred Drakeb94b8492001-12-06 20:51:35 +0000203
Greg Ward42406482000-09-27 02:08:14 +0000204 # Generate .def file
Greg Wardbf5c7092000-08-02 01:31:56 +0000205 contents = [
206 "LIBRARY %s" % os.path.basename(output_filename),
207 "EXPORTS"]
Greg Ward7c6395a2000-06-21 03:33:03 +0000208 for sym in export_symbols:
Greg Wardbf5c7092000-08-02 01:31:56 +0000209 contents.append(sym)
210 self.execute(write_file, (def_file, contents),
211 "writing %s" % def_file)
212
Greg Ward42406482000-09-27 02:08:14 +0000213 # next add options for def-file and to creating import libraries
214
215 # dllwrap uses different options than gcc/ld
216 if self.linker_dll == "dllwrap":
Jeremy Hyltona2f99892002-06-04 20:26:44 +0000217 extra_preargs.extend(["--output-lib", lib_file])
Greg Wardbf5c7092000-08-02 01:31:56 +0000218 # for dllwrap we have to use a special option
Greg Ward42406482000-09-27 02:08:14 +0000219 extra_preargs.extend(["--def", def_file])
220 # we use gcc/ld here and can be sure ld is >= 2.9.10
221 else:
222 # doesn't work: bfd_close build\...\libfoo.a: Invalid operation
223 #extra_preargs.extend(["-Wl,--out-implib,%s" % lib_file])
Jeremy Hyltona2f99892002-06-04 20:26:44 +0000224 # for gcc/ld the def-file is specified as any object files
Greg Ward42406482000-09-27 02:08:14 +0000225 objects.append(def_file)
226
227 #end: if ((export_symbols is not None) and
Fred Drake132dce22000-12-12 23:11:42 +0000228 # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
Fred Drakeb94b8492001-12-06 20:51:35 +0000229
Greg Wardf34506a2000-06-29 22:57:55 +0000230 # who wants symbols and a many times larger output file
Fred Drakeb94b8492001-12-06 20:51:35 +0000231 # should explicitly switch the debug mode on
Greg Wardbf5c7092000-08-02 01:31:56 +0000232 # otherwise we let dllwrap/ld strip the output file
Fred Drakeb94b8492001-12-06 20:51:35 +0000233 # (On my machine: 10KB < stripped_file < ??100KB
Greg Ward42406482000-09-27 02:08:14 +0000234 # unstripped_file = stripped_file + XXX KB
Fred Drakeb94b8492001-12-06 20:51:35 +0000235 # ( XXX=254 for a typical python extension))
236 if not debug:
237 extra_preargs.append("-s")
238
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000239 UnixCCompiler.link(self, target_desc, objects, output_filename,
240 output_dir, libraries, library_dirs,
Greg Ward42406482000-09-27 02:08:14 +0000241 runtime_library_dirs,
242 None, # export_symbols, we do this in our def-file
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000243 debug, extra_preargs, extra_postargs, build_temp,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000244 target_lang)
Fred Drakeb94b8492001-12-06 20:51:35 +0000245
Greg Ward42406482000-09-27 02:08:14 +0000246 # -- Miscellaneous methods -----------------------------------------
247
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000248 def object_filenames(self, source_filenames, strip_dir=0, output_dir=''):
249 """Adds supports for rc and res files."""
250 if output_dir is None:
251 output_dir = ''
Greg Ward42406482000-09-27 02:08:14 +0000252 obj_names = []
253 for src_name in source_filenames:
254 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000255 base, ext = os.path.splitext(os.path.normcase(src_name))
Greg Ward42406482000-09-27 02:08:14 +0000256 if ext not in (self.src_extensions + ['.rc','.res']):
Collin Winter5b7e9d72007-08-30 03:52:21 +0000257 raise UnknownFileError("unknown file type '%s' (from '%s')" % \
258 (ext, src_name))
Greg Ward42406482000-09-27 02:08:14 +0000259 if strip_dir:
260 base = os.path.basename (base)
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000261 if ext in ('.res', '.rc'):
Greg Ward42406482000-09-27 02:08:14 +0000262 # these need to be compiled to object files
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000263 obj_names.append (os.path.join(output_dir,
264 base + ext + self.obj_extension))
Greg Ward42406482000-09-27 02:08:14 +0000265 else:
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000266 obj_names.append (os.path.join(output_dir,
267 base + self.obj_extension))
Greg Ward42406482000-09-27 02:08:14 +0000268 return obj_names
269
Greg Ward7c6395a2000-06-21 03:33:03 +0000270# the same as cygwin plus some additional parameters
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000271class Mingw32CCompiler(CygwinCCompiler):
272 """ Handles the Mingw32 port of the GNU C compiler to Windows.
273 """
Greg Ward7c6395a2000-06-21 03:33:03 +0000274 compiler_type = 'mingw32'
275
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000276 def __init__(self, verbose=0, dry_run=0, force=0):
Greg Ward7c6395a2000-06-21 03:33:03 +0000277
278 CygwinCCompiler.__init__ (self, verbose, dry_run, force)
Fred Drakeb94b8492001-12-06 20:51:35 +0000279
Jason Tishler21664d82003-04-14 12:51:26 +0000280 # ld_version >= "2.13" support -shared so use it instead of
281 # -mdll -static
282 if self.ld_version >= "2.13":
283 shared_option = "-shared"
284 else:
285 shared_option = "-mdll -static"
286
Greg Wardbf5c7092000-08-02 01:31:56 +0000287 # A real mingw32 doesn't need to specify a different entry point,
288 # but cygwin 2.91.57 in no-cygwin-mode needs it.
289 if self.gcc_version <= "2.91.57":
290 entry_point = '--entry _DllMain@12'
291 else:
292 entry_point = ''
Greg Ward7c6395a2000-06-21 03:33:03 +0000293
Greg Wardf34506a2000-06-29 22:57:55 +0000294 self.set_executables(compiler='gcc -mno-cygwin -O -Wall',
Greg Wardbf5c7092000-08-02 01:31:56 +0000295 compiler_so='gcc -mno-cygwin -mdll -O -Wall',
Hye-Shik Chang2400e932004-06-05 18:37:53 +0000296 compiler_cxx='g++ -mno-cygwin -O -Wall',
Greg Wardf34506a2000-06-29 22:57:55 +0000297 linker_exe='gcc -mno-cygwin',
Jason Tishler21664d82003-04-14 12:51:26 +0000298 linker_so='%s -mno-cygwin %s %s'
299 % (self.linker_dll, shared_option,
300 entry_point))
Greg Wardbf5c7092000-08-02 01:31:56 +0000301 # Maybe we should also append -mthreads, but then the finished
302 # dlls need another dll (mingwm10.dll see Mingw32 docs)
Fred Drakeb94b8492001-12-06 20:51:35 +0000303 # (-mthreads: Support thread-safe exception handling on `Mingw32')
304
305 # no additional libraries needed
Greg Wardbf5c7092000-08-02 01:31:56 +0000306 self.dll_libraries=[]
Fred Drakeb94b8492001-12-06 20:51:35 +0000307
Tim Peters6db15d72004-08-04 02:36:18 +0000308 # Include the appropriate MSVC runtime library if Python was built
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000309 # with MSVC 7.0 or later.
310 self.dll_libraries = get_msvcr()
Martin v. Löwis7db57b32004-08-03 12:41:42 +0000311
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000312# Because these compilers aren't configured in Python's pyconfig.h file by
Greg Wardbf5c7092000-08-02 01:31:56 +0000313# default, we should at least warn the user if he is using a unmodified
314# version.
315
Greg Warde8e9d112000-08-13 01:18:55 +0000316CONFIG_H_OK = "ok"
317CONFIG_H_NOTOK = "not ok"
318CONFIG_H_UNCERTAIN = "uncertain"
319
Greg Wardbf5c7092000-08-02 01:31:56 +0000320def check_config_h():
Tarek Ziadé015c8102009-06-10 18:56:35 +0000321 """Check if the current Python installation appears amenable to building
322 extensions with GCC.
Greg Warde8e9d112000-08-13 01:18:55 +0000323
Tarek Ziadé015c8102009-06-10 18:56:35 +0000324 Returns a tuple (status, details), where 'status' is one of the following
325 constants:
326
327 - CONFIG_H_OK: all is well, go ahead and compile
328 - CONFIG_H_NOTOK: doesn't look good
329 - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h
330
Greg Warde8e9d112000-08-13 01:18:55 +0000331 'details' is a human-readable string explaining the situation.
332
333 Note there are two ways to conclude "OK": either 'sys.version' contains
334 the string "GCC" (implying that this Python was built with GCC), or the
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000335 installed "pyconfig.h" contains the string "__GNUC__".
Greg Wardbf5c7092000-08-02 01:31:56 +0000336 """
Greg Warde8e9d112000-08-13 01:18:55 +0000337
338 # XXX since this function also checks sys.version, it's not strictly a
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000339 # "pyconfig.h" check -- should probably be renamed...
Greg Wardbf5c7092000-08-02 01:31:56 +0000340
341 from distutils import sysconfig
Fred Drakeb94b8492001-12-06 20:51:35 +0000342
Tarek Ziadé015c8102009-06-10 18:56:35 +0000343 # if sys.version contains GCC then python was compiled with GCC, and the
344 # pyconfig.h file should be OK
345 if "GCC" in sys.version:
346 return CONFIG_H_OK, "sys.version mentions 'GCC'"
347
348 # let's see if __GNUC__ is mentioned in python.h
Greg Warde8e9d112000-08-13 01:18:55 +0000349 fn = sysconfig.get_config_h_filename()
Greg Wardbf5c7092000-08-02 01:31:56 +0000350 try:
Éric Araujoc6d7ead2010-11-06 02:58:56 +0000351 config_h = open(fn)
352 try:
Tarek Ziadé015c8102009-06-10 18:56:35 +0000353 if "__GNUC__" in config_h.read():
354 return CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn
355 else:
356 return CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn
Éric Araujoc6d7ead2010-11-06 02:58:56 +0000357 finally:
358 config_h.close()
Guido van Rossumb940e112007-01-10 16:19:56 +0000359 except IOError as exc:
Greg Warde8e9d112000-08-13 01:18:55 +0000360 return (CONFIG_H_UNCERTAIN,
361 "couldn't read '%s': %s" % (fn, exc.strerror))
362
Tarek Ziadé41fe2822009-07-12 08:39:08 +0000363RE_VERSION = re.compile(b'(\d+\.\d+(\.\d+)*)')
Greg Warde8e9d112000-08-13 01:18:55 +0000364
Tarek Ziadé015c8102009-06-10 18:56:35 +0000365def _find_exe_version(cmd):
366 """Find the version of an executable by running `cmd` in the shell.
Greg Warde8e9d112000-08-13 01:18:55 +0000367
Tarek Ziadé015c8102009-06-10 18:56:35 +0000368 If the command is not found, or the output does not match
369 `RE_VERSION`, returns None.
370 """
371 executable = cmd.split()[0]
372 if find_executable(executable) is None:
373 return None
374 out = Popen(cmd, shell=True, stdout=PIPE).stdout
375 try:
376 out_string = out.read()
377 finally:
378 out.close()
379 result = RE_VERSION.search(out_string)
380 if result is None:
381 return None
Tarek Ziadé41fe2822009-07-12 08:39:08 +0000382 # LooseVersion works with strings
383 # so we need to decode our bytes
384 return LooseVersion(result.group(1).decode())
Greg Wardbf5c7092000-08-02 01:31:56 +0000385
386def get_versions():
387 """ Try to find out the versions of gcc, ld and dllwrap.
Fred Drakeb94b8492001-12-06 20:51:35 +0000388
Tarek Ziadé015c8102009-06-10 18:56:35 +0000389 If not possible it returns None for it.
390 """
391 commands = ['gcc -dumpversion', 'ld -v', 'dllwrap --version']
392 return tuple([_find_exe_version(cmd) for cmd in commands])