Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 1 | """distutils.cygwinccompiler |
| 2 | |
Greg Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 3 | Provides the CygwinCCompiler class, a subclass of UnixCCompiler that |
| 4 | handles the Cygwin port of the GNU C compiler to Windows. It also contains |
| 5 | the Mingw32CCompiler class which handles the mingw32 port of GCC (same as |
| 6 | cygwin in no-cygwin mode). |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 7 | """ |
| 8 | |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 9 | # 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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 21 | # * We put export_symbols in a def-file, and don't use |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 22 | # --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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 27 | # |
| 28 | # * cygwin gcc 2.91.57/ld 2.9.4/dllwrap 0.2.4 works |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 29 | # (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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 31 | # * 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 Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 33 | # * 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 Ward | 7483d68 | 2000-09-01 01:24:31 +0000 | [diff] [blame] | 35 | # see also http://sources.redhat.com/ml/cygwin/2000-06/msg01274.html |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 36 | # - 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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 42 | # *** only the version of June 2000 shows these problems |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 43 | # * 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 Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 47 | |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 48 | __revision__ = "$Id$" |
| 49 | |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 50 | import os |
| 51 | import sys |
| 52 | import copy |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 53 | from subprocess import Popen, PIPE |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 54 | import re |
| 55 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 56 | from distutils.ccompiler import gen_preprocess_options, gen_lib_options |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 57 | from distutils.unixccompiler import UnixCCompiler |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 58 | from distutils.file_util import write_file |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 59 | from distutils.errors import DistutilsExecError, CompileError, UnknownFileError |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 60 | from distutils import log |
| 61 | from distutils.version import LooseVersion |
| 62 | from distutils.spawn import find_executable |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 63 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 64 | def get_msvcr(): |
| 65 | """Include the appropriate MSVC runtime library if Python was built |
| 66 | with MSVC 7.0 or later. |
| 67 | """ |
| 68 | msc_pos = sys.version.find('MSC v.') |
| 69 | if msc_pos != -1: |
| 70 | msc_ver = sys.version[msc_pos+6:msc_pos+10] |
| 71 | if msc_ver == '1300': |
| 72 | # MSVC 7.0 |
| 73 | return ['msvcr70'] |
| 74 | elif msc_ver == '1310': |
| 75 | # MSVC 7.1 |
| 76 | return ['msvcr71'] |
| 77 | elif msc_ver == '1400': |
| 78 | # VS2005 / MSVC 8.0 |
| 79 | return ['msvcr80'] |
| 80 | elif msc_ver == '1500': |
| 81 | # VS2008 / MSVC 9.0 |
| 82 | return ['msvcr90'] |
| 83 | else: |
Tarek Ziadé | ff54336 | 2009-06-11 09:25:41 +0000 | [diff] [blame] | 84 | raise ValueError("Unknown MS Compiler version %s " % msc_ver) |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 85 | |
| 86 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 87 | class CygwinCCompiler(UnixCCompiler): |
| 88 | """ Handles the Cygwin port of the GNU C compiler to Windows. |
| 89 | """ |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 90 | compiler_type = 'cygwin' |
Greg Ward | b1dceae | 2000-08-13 00:43:56 +0000 | [diff] [blame] | 91 | 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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 97 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 98 | def __init__(self, verbose=0, dry_run=0, force=0): |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 99 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 100 | UnixCCompiler.__init__(self, verbose, dry_run, force) |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 101 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 102 | status, details = check_config_h() |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 103 | self.debug_print("Python's GCC status: %s (details: %s)" % |
| 104 | (status, details)) |
| 105 | if status is not CONFIG_H_OK: |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 106 | self.warn( |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 107 | "Python's pyconfig.h doesn't seem to support your compiler. " |
Jeremy Hylton | 1bba31d | 2002-06-13 17:28:18 +0000 | [diff] [blame] | 108 | "Reason: %s. " |
| 109 | "Compiling may fail because of undefined preprocessor macros." |
| 110 | % details) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 111 | |
Jeremy Hylton | 1bba31d | 2002-06-13 17:28:18 +0000 | [diff] [blame] | 112 | self.gcc_version, self.ld_version, self.dllwrap_version = \ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 113 | get_versions() |
Greg Ward | b1dceae | 2000-08-13 00:43:56 +0000 | [diff] [blame] | 114 | self.debug_print(self.compiler_type + ": gcc %s, ld %s, dllwrap %s\n" % |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 115 | (self.gcc_version, |
| 116 | self.ld_version, |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 117 | self.dllwrap_version) ) |
| 118 | |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 119 | # ld_version >= "2.10.90" and < "2.13" should also be able to use |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 120 | # gcc -mdll instead of dllwrap |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 121 | # Older dllwraps had own version numbers, newer ones use the |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 122 | # same as the rest of binutils ( also ld ) |
| 123 | # dllwrap 2.10.90 is buggy |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 124 | if self.ld_version >= "2.10.90": |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 125 | self.linker_dll = "gcc" |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 126 | else: |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 127 | self.linker_dll = "dllwrap" |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 128 | |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 129 | # 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 Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 136 | # Hard-code GCC because that's what this is all about. |
| 137 | # XXX optimization, warnings etc. should be customizable. |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 138 | self.set_executables(compiler='gcc -mcygwin -O -Wall', |
| 139 | compiler_so='gcc -mcygwin -mdll -O -Wall', |
Hye-Shik Chang | 2400e93 | 2004-06-05 18:37:53 +0000 | [diff] [blame] | 140 | compiler_cxx='g++ -mcygwin -O -Wall', |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 141 | linker_exe='gcc -mcygwin', |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 142 | linker_so=('%s -mcygwin %s' % |
| 143 | (self.linker_dll, shared_option))) |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 144 | |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 145 | # cygwin and mingw32 need different sets of libraries |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 146 | 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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 150 | self.warn( |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 151 | "Consider upgrading to a newer version of gcc") |
| 152 | else: |
Tim Peters | 6db15d7 | 2004-08-04 02:36:18 +0000 | [diff] [blame] | 153 | # Include the appropriate MSVC runtime library if Python was built |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 154 | # with MSVC 7.0 or later. |
| 155 | self.dll_libraries = get_msvcr() |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 156 | |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 157 | def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 158 | """Compiles the source by spawing GCC and windres if needed.""" |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 159 | 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 Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 163 | except DistutilsExecError as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 164 | raise CompileError(msg) |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 165 | 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 Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 169 | except DistutilsExecError as msg: |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 170 | raise CompileError(msg) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 171 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 172 | 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 Ward | b1dceae | 2000-08-13 00:43:56 +0000 | [diff] [blame] | 177 | # use separate copies, so we can modify the lists |
| 178 | extra_preargs = copy.copy(extra_preargs or []) |
| 179 | libraries = copy.copy(libraries or []) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 180 | objects = copy.copy(objects or []) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 181 | |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 182 | # Additional libraries |
Greg Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 183 | libraries.extend(self.dll_libraries) |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 184 | |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 185 | # 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 Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 191 | # but for this we had to insert some unchanged parts of |
| 192 | # UnixCCompiler, and this is not what we want.) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 193 | |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 194 | # we want to put some files in the same directory as the |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 195 | # 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 Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 203 | def_file = os.path.join(temp_dir, dll_name + ".def") |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 204 | lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a") |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 205 | |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 206 | # Generate .def file |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 207 | contents = [ |
| 208 | "LIBRARY %s" % os.path.basename(output_filename), |
| 209 | "EXPORTS"] |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 210 | for sym in export_symbols: |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 211 | contents.append(sym) |
| 212 | self.execute(write_file, (def_file, contents), |
| 213 | "writing %s" % def_file) |
| 214 | |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 215 | # 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 Hylton | a2f9989 | 2002-06-04 20:26:44 +0000 | [diff] [blame] | 219 | extra_preargs.extend(["--output-lib", lib_file]) |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 220 | # for dllwrap we have to use a special option |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 221 | 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 Hylton | a2f9989 | 2002-06-04 20:26:44 +0000 | [diff] [blame] | 226 | # for gcc/ld the def-file is specified as any object files |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 227 | objects.append(def_file) |
| 228 | |
| 229 | #end: if ((export_symbols is not None) and |
Fred Drake | 132dce2 | 2000-12-12 23:11:42 +0000 | [diff] [blame] | 230 | # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 231 | |
Greg Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 232 | # who wants symbols and a many times larger output file |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 233 | # should explicitly switch the debug mode on |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 234 | # otherwise we let dllwrap/ld strip the output file |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 235 | # (On my machine: 10KB < stripped_file < ??100KB |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 236 | # unstripped_file = stripped_file + XXX KB |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 237 | # ( XXX=254 for a typical python extension)) |
| 238 | if not debug: |
| 239 | extra_preargs.append("-s") |
| 240 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 241 | UnixCCompiler.link(self, target_desc, objects, output_filename, |
| 242 | output_dir, libraries, library_dirs, |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 243 | runtime_library_dirs, |
| 244 | None, # export_symbols, we do this in our def-file |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 245 | debug, extra_preargs, extra_postargs, build_temp, |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 246 | target_lang) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 247 | |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 248 | # -- Miscellaneous methods ----------------------------------------- |
| 249 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 250 | 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 Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 254 | obj_names = [] |
| 255 | for src_name in source_filenames: |
| 256 | # use normcase to make sure '.rc' is really '.rc' and not '.RC' |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 257 | base, ext = os.path.splitext(os.path.normcase(src_name)) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 258 | if ext not in (self.src_extensions + ['.rc','.res']): |
Collin Winter | 5b7e9d7 | 2007-08-30 03:52:21 +0000 | [diff] [blame] | 259 | raise UnknownFileError("unknown file type '%s' (from '%s')" % \ |
| 260 | (ext, src_name)) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 261 | if strip_dir: |
| 262 | base = os.path.basename (base) |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 263 | if ext in ('.res', '.rc'): |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 264 | # these need to be compiled to object files |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 265 | obj_names.append (os.path.join(output_dir, |
| 266 | base + ext + self.obj_extension)) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 267 | else: |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 268 | obj_names.append (os.path.join(output_dir, |
| 269 | base + self.obj_extension)) |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 270 | return obj_names |
| 271 | |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 272 | # the same as cygwin plus some additional parameters |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 273 | class Mingw32CCompiler(CygwinCCompiler): |
| 274 | """ Handles the Mingw32 port of the GNU C compiler to Windows. |
| 275 | """ |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 276 | compiler_type = 'mingw32' |
| 277 | |
Tarek Ziadé | e653a7d | 2009-06-11 10:00:56 +0000 | [diff] [blame] | 278 | def __init__(self, verbose=0, dry_run=0, force=0): |
Greg Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 279 | |
| 280 | CygwinCCompiler.__init__ (self, verbose, dry_run, force) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 281 | |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 282 | # 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 Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 289 | # 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 Ward | 7c6395a | 2000-06-21 03:33:03 +0000 | [diff] [blame] | 295 | |
Greg Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 296 | self.set_executables(compiler='gcc -mno-cygwin -O -Wall', |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 297 | compiler_so='gcc -mno-cygwin -mdll -O -Wall', |
Hye-Shik Chang | 2400e93 | 2004-06-05 18:37:53 +0000 | [diff] [blame] | 298 | compiler_cxx='g++ -mno-cygwin -O -Wall', |
Greg Ward | f34506a | 2000-06-29 22:57:55 +0000 | [diff] [blame] | 299 | linker_exe='gcc -mno-cygwin', |
Jason Tishler | 21664d8 | 2003-04-14 12:51:26 +0000 | [diff] [blame] | 300 | linker_so='%s -mno-cygwin %s %s' |
| 301 | % (self.linker_dll, shared_option, |
| 302 | entry_point)) |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 303 | # Maybe we should also append -mthreads, but then the finished |
| 304 | # dlls need another dll (mingwm10.dll see Mingw32 docs) |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 305 | # (-mthreads: Support thread-safe exception handling on `Mingw32') |
| 306 | |
| 307 | # no additional libraries needed |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 308 | self.dll_libraries=[] |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 309 | |
Tim Peters | 6db15d7 | 2004-08-04 02:36:18 +0000 | [diff] [blame] | 310 | # Include the appropriate MSVC runtime library if Python was built |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 311 | # with MSVC 7.0 or later. |
| 312 | self.dll_libraries = get_msvcr() |
Martin v. Löwis | 7db57b3 | 2004-08-03 12:41:42 +0000 | [diff] [blame] | 313 | |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 314 | # Because these compilers aren't configured in Python's pyconfig.h file by |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 315 | # default, we should at least warn the user if he is using a unmodified |
| 316 | # version. |
| 317 | |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 318 | CONFIG_H_OK = "ok" |
| 319 | CONFIG_H_NOTOK = "not ok" |
| 320 | CONFIG_H_UNCERTAIN = "uncertain" |
| 321 | |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 322 | def check_config_h(): |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 323 | """Check if the current Python installation appears amenable to building |
| 324 | extensions with GCC. |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 325 | |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 326 | Returns a tuple (status, details), where 'status' is one of the following |
| 327 | constants: |
| 328 | |
| 329 | - CONFIG_H_OK: all is well, go ahead and compile |
| 330 | - CONFIG_H_NOTOK: doesn't look good |
| 331 | - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h |
| 332 | |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 333 | 'details' is a human-readable string explaining the situation. |
| 334 | |
| 335 | Note there are two ways to conclude "OK": either 'sys.version' contains |
| 336 | the string "GCC" (implying that this Python was built with GCC), or the |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 337 | installed "pyconfig.h" contains the string "__GNUC__". |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 338 | """ |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 339 | |
| 340 | # XXX since this function also checks sys.version, it's not strictly a |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 341 | # "pyconfig.h" check -- should probably be renamed... |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 342 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 343 | from distutils import sysconfig |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 344 | |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 345 | # if sys.version contains GCC then python was compiled with GCC, and the |
| 346 | # pyconfig.h file should be OK |
| 347 | if "GCC" in sys.version: |
| 348 | return CONFIG_H_OK, "sys.version mentions 'GCC'" |
| 349 | |
| 350 | # let's see if __GNUC__ is mentioned in python.h |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 351 | fn = sysconfig.get_config_h_filename() |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 352 | try: |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 353 | with open(fn) as config_h: |
| 354 | if "__GNUC__" in config_h.read(): |
| 355 | return CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn |
| 356 | else: |
| 357 | return CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 358 | except IOError as exc: |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 359 | return (CONFIG_H_UNCERTAIN, |
| 360 | "couldn't read '%s': %s" % (fn, exc.strerror)) |
| 361 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 362 | RE_VERSION = re.compile(b'(\d+\.\d+(\.\d+)*)') |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 363 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 364 | def _find_exe_version(cmd): |
| 365 | """Find the version of an executable by running `cmd` in the shell. |
Greg Ward | e8e9d11 | 2000-08-13 01:18:55 +0000 | [diff] [blame] | 366 | |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 367 | If the command is not found, or the output does not match |
| 368 | `RE_VERSION`, returns None. |
| 369 | """ |
| 370 | executable = cmd.split()[0] |
| 371 | if find_executable(executable) is None: |
| 372 | return None |
| 373 | out = Popen(cmd, shell=True, stdout=PIPE).stdout |
| 374 | try: |
| 375 | out_string = out.read() |
| 376 | finally: |
| 377 | out.close() |
| 378 | result = RE_VERSION.search(out_string) |
| 379 | if result is None: |
| 380 | return None |
| 381 | # LooseVersion works with strings |
| 382 | # so we need to decode our bytes |
| 383 | return LooseVersion(result.group(1).decode()) |
Greg Ward | bf5c709 | 2000-08-02 01:31:56 +0000 | [diff] [blame] | 384 | |
| 385 | def get_versions(): |
| 386 | """ Try to find out the versions of gcc, ld and dllwrap. |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 387 | |
Tarek Ziadé | 015c810 | 2009-06-10 18:56:35 +0000 | [diff] [blame] | 388 | If not possible it returns None for it. |
| 389 | """ |
Tarek Ziadé | 3679727 | 2010-07-22 12:50:05 +0000 | [diff] [blame^] | 390 | commands = ['gcc -dumpversion', 'ld -v', 'dllwrap --version'] |
| 391 | return tuple([_find_exe_version(cmd) for cmd in commands]) |