blob: 66c12dd35830b29d9b80bc1fecef65bbc46fe862 [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
Martin Panter7462b6492015-11-02 03:37:02 +000013# 2. you have to generate an import library for its dll
Greg Wardbf5c7092000-08-02 01:31:56 +000014# - create a def-file for python??.dll
Martin Panter7462b6492015-11-02 03:37:02 +000015# - create an import library using
Greg Wardbf5c7092000-08-02 01:31:56 +000016# 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
Antoine Pitrou3c678c32013-09-30 22:28:10 +020051from subprocess import Popen, PIPE, check_output
Tarek Ziadé015c8102009-06-10 18:56:35 +000052import re
53
Greg Ward7c6395a2000-06-21 03:33:03 +000054from distutils.unixccompiler import UnixCCompiler
Greg Wardbf5c7092000-08-02 01:31:56 +000055from distutils.file_util import write_file
Antoine Pitrou6a9c0e52013-09-30 22:29:48 +020056from distutils.errors import (DistutilsExecError, CCompilerError,
57 CompileError, UnknownFileError)
Tarek Ziadé015c8102009-06-10 18:56:35 +000058from distutils.version import LooseVersion
59from distutils.spawn import find_executable
Greg Ward7c6395a2000-06-21 03:33:03 +000060
Christian Heimescbf3b5c2007-12-03 21:02:03 +000061def get_msvcr():
62 """Include the appropriate MSVC runtime library if Python was built
63 with MSVC 7.0 or later.
64 """
65 msc_pos = sys.version.find('MSC v.')
66 if msc_pos != -1:
67 msc_ver = sys.version[msc_pos+6:msc_pos+10]
68 if msc_ver == '1300':
69 # MSVC 7.0
70 return ['msvcr70']
71 elif msc_ver == '1310':
72 # MSVC 7.1
73 return ['msvcr71']
74 elif msc_ver == '1400':
75 # VS2005 / MSVC 8.0
76 return ['msvcr80']
77 elif msc_ver == '1500':
78 # VS2008 / MSVC 9.0
79 return ['msvcr90']
Martin v. Löwis7d30b802012-07-10 07:07:06 +020080 elif msc_ver == '1600':
81 # VS2010 / MSVC 10.0
82 return ['msvcr100']
Christian Heimescbf3b5c2007-12-03 21:02:03 +000083 else:
Tarek Ziadéff543362009-06-11 09:25:41 +000084 raise ValueError("Unknown MS Compiler version %s " % msc_ver)
Christian Heimescbf3b5c2007-12-03 21:02:03 +000085
86
Tarek Ziadée653a7d2009-06-11 10:00:56 +000087class CygwinCCompiler(UnixCCompiler):
88 """ Handles the Cygwin port of the GNU C compiler to Windows.
89 """
Greg Ward7c6395a2000-06-21 03:33:03 +000090 compiler_type = 'cygwin'
Greg Wardb1dceae2000-08-13 00:43:56 +000091 obj_extension = ".o"
92 static_lib_extension = ".a"
93 shared_lib_extension = ".dll"
94 static_lib_format = "lib%s%s"
95 shared_lib_format = "%s%s"
96 exe_extension = ".exe"
Fred Drakeb94b8492001-12-06 20:51:35 +000097
Tarek Ziadée653a7d2009-06-11 10:00:56 +000098 def __init__(self, verbose=0, dry_run=0, force=0):
Greg Ward7c6395a2000-06-21 03:33:03 +000099
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000100 UnixCCompiler.__init__(self, verbose, dry_run, force)
Greg Ward7c6395a2000-06-21 03:33:03 +0000101
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000102 status, details = check_config_h()
Greg Warde8e9d112000-08-13 01:18:55 +0000103 self.debug_print("Python's GCC status: %s (details: %s)" %
104 (status, details))
105 if status is not CONFIG_H_OK:
Greg Wardbf5c7092000-08-02 01:31:56 +0000106 self.warn(
Tim Peters182b5ac2004-07-18 06:16:08 +0000107 "Python's pyconfig.h doesn't seem to support your compiler. "
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000108 "Reason: %s. "
109 "Compiling may fail because of undefined preprocessor macros."
110 % details)
Fred Drakeb94b8492001-12-06 20:51:35 +0000111
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000112 self.gcc_version, self.ld_version, self.dllwrap_version = \
Greg Wardbf5c7092000-08-02 01:31:56 +0000113 get_versions()
Greg Wardb1dceae2000-08-13 00:43:56 +0000114 self.debug_print(self.compiler_type + ": gcc %s, ld %s, dllwrap %s\n" %
Fred Drakeb94b8492001-12-06 20:51:35 +0000115 (self.gcc_version,
116 self.ld_version,
Greg Wardbf5c7092000-08-02 01:31:56 +0000117 self.dllwrap_version) )
118
Jason Tishler21664d82003-04-14 12:51:26 +0000119 # ld_version >= "2.10.90" and < "2.13" should also be able to use
Greg Wardbf5c7092000-08-02 01:31:56 +0000120 # gcc -mdll instead of dllwrap
Fred Drakeb94b8492001-12-06 20:51:35 +0000121 # Older dllwraps had own version numbers, newer ones use the
Greg Wardbf5c7092000-08-02 01:31:56 +0000122 # same as the rest of binutils ( also ld )
123 # dllwrap 2.10.90 is buggy
Fred Drakeb94b8492001-12-06 20:51:35 +0000124 if self.ld_version >= "2.10.90":
Greg Ward42406482000-09-27 02:08:14 +0000125 self.linker_dll = "gcc"
Greg Wardbf5c7092000-08-02 01:31:56 +0000126 else:
Greg Ward42406482000-09-27 02:08:14 +0000127 self.linker_dll = "dllwrap"
Greg Wardbf5c7092000-08-02 01:31:56 +0000128
Jason Tishler21664d82003-04-14 12:51:26 +0000129 # ld_version >= "2.13" support -shared so use it instead of
130 # -mdll -static
131 if self.ld_version >= "2.13":
132 shared_option = "-shared"
133 else:
134 shared_option = "-mdll -static"
135
Greg Wardf34506a2000-06-29 22:57:55 +0000136 # Hard-code GCC because that's what this is all about.
137 # XXX optimization, warnings etc. should be customizable.
Greg Wardbf5c7092000-08-02 01:31:56 +0000138 self.set_executables(compiler='gcc -mcygwin -O -Wall',
139 compiler_so='gcc -mcygwin -mdll -O -Wall',
Hye-Shik Chang2400e932004-06-05 18:37:53 +0000140 compiler_cxx='g++ -mcygwin -O -Wall',
Greg Wardbf5c7092000-08-02 01:31:56 +0000141 linker_exe='gcc -mcygwin',
Jason Tishler21664d82003-04-14 12:51:26 +0000142 linker_so=('%s -mcygwin %s' %
143 (self.linker_dll, shared_option)))
Greg Ward7c6395a2000-06-21 03:33:03 +0000144
Fred Drakeb94b8492001-12-06 20:51:35 +0000145 # cygwin and mingw32 need different sets of libraries
Greg Wardbf5c7092000-08-02 01:31:56 +0000146 if self.gcc_version == "2.91.57":
147 # cygwin shouldn't need msvcrt, but without the dlls will crash
148 # (gcc version 2.91.57) -- perhaps something about initialization
149 self.dll_libraries=["msvcrt"]
Fred Drakeb94b8492001-12-06 20:51:35 +0000150 self.warn(
Greg Wardbf5c7092000-08-02 01:31:56 +0000151 "Consider upgrading to a newer version of gcc")
152 else:
Tim Peters6db15d72004-08-04 02:36:18 +0000153 # Include the appropriate MSVC runtime library if Python was built
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000154 # with MSVC 7.0 or later.
155 self.dll_libraries = get_msvcr()
Fred Drakeb94b8492001-12-06 20:51:35 +0000156
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000157 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Ezio Melotti13925002011-03-16 11:05:33 +0200158 """Compiles the source by spawning GCC and windres if needed."""
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000159 if ext == '.rc' or ext == '.res':
160 # gcc needs '.res' and '.rc' compiled to object files !!!
161 try:
162 self.spawn(["windres", "-i", src, "-o", obj])
Guido van Rossumb940e112007-01-10 16:19:56 +0000163 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000164 raise CompileError(msg)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000165 else: # for other files use the C-compiler
166 try:
167 self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
168 extra_postargs)
Guido van Rossumb940e112007-01-10 16:19:56 +0000169 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000170 raise CompileError(msg)
Greg Ward42406482000-09-27 02:08:14 +0000171
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000172 def link(self, target_desc, objects, output_filename, output_dir=None,
173 libraries=None, library_dirs=None, runtime_library_dirs=None,
174 export_symbols=None, debug=0, extra_preargs=None,
175 extra_postargs=None, build_temp=None, target_lang=None):
176 """Link the objects."""
Greg Wardb1dceae2000-08-13 00:43:56 +0000177 # use separate copies, so we can modify the lists
178 extra_preargs = copy.copy(extra_preargs or [])
179 libraries = copy.copy(libraries or [])
Greg Ward42406482000-09-27 02:08:14 +0000180 objects = copy.copy(objects or [])
Fred Drakeb94b8492001-12-06 20:51:35 +0000181
Greg Wardbf5c7092000-08-02 01:31:56 +0000182 # Additional libraries
Greg Wardf34506a2000-06-29 22:57:55 +0000183 libraries.extend(self.dll_libraries)
Greg Wardbf5c7092000-08-02 01:31:56 +0000184
Greg Ward42406482000-09-27 02:08:14 +0000185 # handle export symbols by creating a def-file
186 # with executables this only works with gcc/ld as linker
187 if ((export_symbols is not None) and
188 (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
189 # (The linker doesn't do anything if output is up-to-date.
190 # So it would probably better to check if we really need this,
Fred Drakeb94b8492001-12-06 20:51:35 +0000191 # but for this we had to insert some unchanged parts of
192 # UnixCCompiler, and this is not what we want.)
Greg Ward42406482000-09-27 02:08:14 +0000193
Fred Drakeb94b8492001-12-06 20:51:35 +0000194 # we want to put some files in the same directory as the
Greg Ward42406482000-09-27 02:08:14 +0000195 # object files are, build_temp doesn't help much
196 # where are the object files
197 temp_dir = os.path.dirname(objects[0])
198 # name of dll to give the helper files the same base name
199 (dll_name, dll_extension) = os.path.splitext(
200 os.path.basename(output_filename))
201
202 # generate the filenames for these files
Greg Wardbf5c7092000-08-02 01:31:56 +0000203 def_file = os.path.join(temp_dir, dll_name + ".def")
Greg Ward42406482000-09-27 02:08:14 +0000204 lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a")
Fred Drakeb94b8492001-12-06 20:51:35 +0000205
Greg Ward42406482000-09-27 02:08:14 +0000206 # Generate .def file
Greg Wardbf5c7092000-08-02 01:31:56 +0000207 contents = [
208 "LIBRARY %s" % os.path.basename(output_filename),
209 "EXPORTS"]
Greg Ward7c6395a2000-06-21 03:33:03 +0000210 for sym in export_symbols:
Greg Wardbf5c7092000-08-02 01:31:56 +0000211 contents.append(sym)
212 self.execute(write_file, (def_file, contents),
213 "writing %s" % def_file)
214
Greg Ward42406482000-09-27 02:08:14 +0000215 # next add options for def-file and to creating import libraries
216
217 # dllwrap uses different options than gcc/ld
218 if self.linker_dll == "dllwrap":
Jeremy Hyltona2f99892002-06-04 20:26:44 +0000219 extra_preargs.extend(["--output-lib", lib_file])
Greg Wardbf5c7092000-08-02 01:31:56 +0000220 # for dllwrap we have to use a special option
Greg Ward42406482000-09-27 02:08:14 +0000221 extra_preargs.extend(["--def", def_file])
222 # we use gcc/ld here and can be sure ld is >= 2.9.10
223 else:
224 # doesn't work: bfd_close build\...\libfoo.a: Invalid operation
225 #extra_preargs.extend(["-Wl,--out-implib,%s" % lib_file])
Jeremy Hyltona2f99892002-06-04 20:26:44 +0000226 # for gcc/ld the def-file is specified as any object files
Greg Ward42406482000-09-27 02:08:14 +0000227 objects.append(def_file)
228
229 #end: if ((export_symbols is not None) and
Fred Drake132dce22000-12-12 23:11:42 +0000230 # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
Fred Drakeb94b8492001-12-06 20:51:35 +0000231
Greg Wardf34506a2000-06-29 22:57:55 +0000232 # who wants symbols and a many times larger output file
Fred Drakeb94b8492001-12-06 20:51:35 +0000233 # should explicitly switch the debug mode on
Greg Wardbf5c7092000-08-02 01:31:56 +0000234 # otherwise we let dllwrap/ld strip the output file
Victor Stinner8c663fd2017-11-08 14:44:44 -0800235 # (On my machine: 10KiB < stripped_file < ??100KiB
236 # unstripped_file = stripped_file + XXX KiB
Fred Drakeb94b8492001-12-06 20:51:35 +0000237 # ( XXX=254 for a typical python extension))
238 if not debug:
239 extra_preargs.append("-s")
240
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000241 UnixCCompiler.link(self, target_desc, objects, output_filename,
242 output_dir, libraries, library_dirs,
Greg Ward42406482000-09-27 02:08:14 +0000243 runtime_library_dirs,
244 None, # export_symbols, we do this in our def-file
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000245 debug, extra_preargs, extra_postargs, build_temp,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000246 target_lang)
Fred Drakeb94b8492001-12-06 20:51:35 +0000247
Greg Ward42406482000-09-27 02:08:14 +0000248 # -- Miscellaneous methods -----------------------------------------
249
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000250 def object_filenames(self, source_filenames, strip_dir=0, output_dir=''):
251 """Adds supports for rc and res files."""
252 if output_dir is None:
253 output_dir = ''
Greg Ward42406482000-09-27 02:08:14 +0000254 obj_names = []
255 for src_name in source_filenames:
256 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000257 base, ext = os.path.splitext(os.path.normcase(src_name))
Greg Ward42406482000-09-27 02:08:14 +0000258 if ext not in (self.src_extensions + ['.rc','.res']):
Collin Winter5b7e9d72007-08-30 03:52:21 +0000259 raise UnknownFileError("unknown file type '%s' (from '%s')" % \
260 (ext, src_name))
Greg Ward42406482000-09-27 02:08:14 +0000261 if strip_dir:
262 base = os.path.basename (base)
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000263 if ext in ('.res', '.rc'):
Greg Ward42406482000-09-27 02:08:14 +0000264 # these need to be compiled to object files
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000265 obj_names.append (os.path.join(output_dir,
266 base + ext + self.obj_extension))
Greg Ward42406482000-09-27 02:08:14 +0000267 else:
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000268 obj_names.append (os.path.join(output_dir,
269 base + self.obj_extension))
Greg Ward42406482000-09-27 02:08:14 +0000270 return obj_names
271
Greg Ward7c6395a2000-06-21 03:33:03 +0000272# the same as cygwin plus some additional parameters
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000273class Mingw32CCompiler(CygwinCCompiler):
274 """ Handles the Mingw32 port of the GNU C compiler to Windows.
275 """
Greg Ward7c6395a2000-06-21 03:33:03 +0000276 compiler_type = 'mingw32'
277
Tarek Ziadée653a7d2009-06-11 10:00:56 +0000278 def __init__(self, verbose=0, dry_run=0, force=0):
Greg Ward7c6395a2000-06-21 03:33:03 +0000279
280 CygwinCCompiler.__init__ (self, verbose, dry_run, force)
Fred Drakeb94b8492001-12-06 20:51:35 +0000281
Jason Tishler21664d82003-04-14 12:51:26 +0000282 # ld_version >= "2.13" support -shared so use it instead of
283 # -mdll -static
284 if self.ld_version >= "2.13":
285 shared_option = "-shared"
286 else:
287 shared_option = "-mdll -static"
288
Greg Wardbf5c7092000-08-02 01:31:56 +0000289 # A real mingw32 doesn't need to specify a different entry point,
290 # but cygwin 2.91.57 in no-cygwin-mode needs it.
291 if self.gcc_version <= "2.91.57":
292 entry_point = '--entry _DllMain@12'
293 else:
294 entry_point = ''
Greg Ward7c6395a2000-06-21 03:33:03 +0000295
Antoine Pitrou6a9c0e52013-09-30 22:29:48 +0200296 if is_cygwingcc():
297 raise CCompilerError(
298 'Cygwin gcc cannot be used with --compiler=mingw32')
Antoine Pitrou3c678c32013-09-30 22:28:10 +0200299
Antoine Pitrou6a9c0e52013-09-30 22:29:48 +0200300 self.set_executables(compiler='gcc -O -Wall',
301 compiler_so='gcc -mdll -O -Wall',
302 compiler_cxx='g++ -O -Wall',
303 linker_exe='gcc',
304 linker_so='%s %s %s'
Jason Tishler21664d82003-04-14 12:51:26 +0000305 % (self.linker_dll, shared_option,
306 entry_point))
Greg Wardbf5c7092000-08-02 01:31:56 +0000307 # Maybe we should also append -mthreads, but then the finished
308 # dlls need another dll (mingwm10.dll see Mingw32 docs)
Fred Drakeb94b8492001-12-06 20:51:35 +0000309 # (-mthreads: Support thread-safe exception handling on `Mingw32')
310
311 # no additional libraries needed
Greg Wardbf5c7092000-08-02 01:31:56 +0000312 self.dll_libraries=[]
Fred Drakeb94b8492001-12-06 20:51:35 +0000313
Tim Peters6db15d72004-08-04 02:36:18 +0000314 # Include the appropriate MSVC runtime library if Python was built
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000315 # with MSVC 7.0 or later.
316 self.dll_libraries = get_msvcr()
Martin v. Löwis7db57b32004-08-03 12:41:42 +0000317
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000318# Because these compilers aren't configured in Python's pyconfig.h file by
Martin Panter7462b6492015-11-02 03:37:02 +0000319# default, we should at least warn the user if he is using an unmodified
Greg Wardbf5c7092000-08-02 01:31:56 +0000320# version.
321
Greg Warde8e9d112000-08-13 01:18:55 +0000322CONFIG_H_OK = "ok"
323CONFIG_H_NOTOK = "not ok"
324CONFIG_H_UNCERTAIN = "uncertain"
325
Greg Wardbf5c7092000-08-02 01:31:56 +0000326def check_config_h():
Tarek Ziadé015c8102009-06-10 18:56:35 +0000327 """Check if the current Python installation appears amenable to building
328 extensions with GCC.
Greg Warde8e9d112000-08-13 01:18:55 +0000329
Tarek Ziadé015c8102009-06-10 18:56:35 +0000330 Returns a tuple (status, details), where 'status' is one of the following
331 constants:
332
333 - CONFIG_H_OK: all is well, go ahead and compile
334 - CONFIG_H_NOTOK: doesn't look good
335 - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h
336
Greg Warde8e9d112000-08-13 01:18:55 +0000337 'details' is a human-readable string explaining the situation.
338
339 Note there are two ways to conclude "OK": either 'sys.version' contains
340 the string "GCC" (implying that this Python was built with GCC), or the
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000341 installed "pyconfig.h" contains the string "__GNUC__".
Greg Wardbf5c7092000-08-02 01:31:56 +0000342 """
Greg Warde8e9d112000-08-13 01:18:55 +0000343
344 # XXX since this function also checks sys.version, it's not strictly a
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000345 # "pyconfig.h" check -- should probably be renamed...
Greg Wardbf5c7092000-08-02 01:31:56 +0000346
347 from distutils import sysconfig
Fred Drakeb94b8492001-12-06 20:51:35 +0000348
Tarek Ziadé015c8102009-06-10 18:56:35 +0000349 # if sys.version contains GCC then python was compiled with GCC, and the
350 # pyconfig.h file should be OK
351 if "GCC" in sys.version:
352 return CONFIG_H_OK, "sys.version mentions 'GCC'"
353
354 # let's see if __GNUC__ is mentioned in python.h
Greg Warde8e9d112000-08-13 01:18:55 +0000355 fn = sysconfig.get_config_h_filename()
Greg Wardbf5c7092000-08-02 01:31:56 +0000356 try:
Éric Araujoc6d7ead2010-11-06 02:58:56 +0000357 config_h = open(fn)
358 try:
Tarek Ziadé015c8102009-06-10 18:56:35 +0000359 if "__GNUC__" in config_h.read():
360 return CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn
361 else:
362 return CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn
Éric Araujoc6d7ead2010-11-06 02:58:56 +0000363 finally:
364 config_h.close()
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200365 except OSError as exc:
Greg Warde8e9d112000-08-13 01:18:55 +0000366 return (CONFIG_H_UNCERTAIN,
367 "couldn't read '%s': %s" % (fn, exc.strerror))
368
R David Murray44b548d2016-09-08 13:59:53 -0400369RE_VERSION = re.compile(br'(\d+\.\d+(\.\d+)*)')
Greg Warde8e9d112000-08-13 01:18:55 +0000370
Tarek Ziadé015c8102009-06-10 18:56:35 +0000371def _find_exe_version(cmd):
372 """Find the version of an executable by running `cmd` in the shell.
Greg Warde8e9d112000-08-13 01:18:55 +0000373
Tarek Ziadé015c8102009-06-10 18:56:35 +0000374 If the command is not found, or the output does not match
375 `RE_VERSION`, returns None.
376 """
377 executable = cmd.split()[0]
378 if find_executable(executable) is None:
379 return None
380 out = Popen(cmd, shell=True, stdout=PIPE).stdout
381 try:
382 out_string = out.read()
383 finally:
384 out.close()
385 result = RE_VERSION.search(out_string)
386 if result is None:
387 return None
Tarek Ziadé41fe2822009-07-12 08:39:08 +0000388 # LooseVersion works with strings
389 # so we need to decode our bytes
390 return LooseVersion(result.group(1).decode())
Greg Wardbf5c7092000-08-02 01:31:56 +0000391
392def get_versions():
393 """ Try to find out the versions of gcc, ld and dllwrap.
Fred Drakeb94b8492001-12-06 20:51:35 +0000394
Tarek Ziadé015c8102009-06-10 18:56:35 +0000395 If not possible it returns None for it.
396 """
397 commands = ['gcc -dumpversion', 'ld -v', 'dllwrap --version']
398 return tuple([_find_exe_version(cmd) for cmd in commands])
Antoine Pitrou3c678c32013-09-30 22:28:10 +0200399
400def is_cygwingcc():
401 '''Try to determine if the gcc that would be used is from cygwin.'''
402 out_string = check_output(['gcc', '-dumpmachine'])
403 return out_string.strip().endswith(b'cygwin')