Tarek Ziade | 1231a4e | 2011-05-19 13:07:25 +0200 | [diff] [blame] | 1 | """CCompiler implementations for Cygwin and mingw32 versions of GCC. |
| 2 | |
| 3 | This module contains the CygwinCCompiler class, a subclass of |
| 4 | UnixCCompiler that handles the Cygwin port of the GNU C compiler to |
| 5 | Windows, and the Mingw32CCompiler class which handles the mingw32 port |
| 6 | of GCC (same as cygwin in no-cygwin mode). |
| 7 | """ |
| 8 | |
| 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 | # |
| 21 | # * We put export_symbols in a def-file, and don't use |
| 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: |
| 27 | # |
| 28 | # * cygwin gcc 2.91.57/ld 2.9.4/dllwrap 0.2.4 works |
| 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 |
| 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) |
| 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 |
| 35 | # see also http://sources.redhat.com/ml/cygwin/2000-06/msg01274.html |
| 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. |
| 42 | # *** only the version of June 2000 shows these problems |
| 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) |
| 47 | |
| 48 | |
| 49 | import os |
| 50 | import sys |
Tarek Ziade | 1231a4e | 2011-05-19 13:07:25 +0200 | [diff] [blame] | 51 | |
| 52 | from packaging import logger |
| 53 | from packaging.compiler.unixccompiler import UnixCCompiler |
| 54 | from packaging.util import write_file |
| 55 | from packaging.errors import PackagingExecError, CompileError, UnknownFileError |
| 56 | from packaging.util import get_compiler_versions |
| 57 | import sysconfig |
| 58 | |
| 59 | |
| 60 | def get_msvcr(): |
| 61 | """Include the appropriate MSVC runtime library if Python was built |
| 62 | with MSVC 7.0 or later. |
| 63 | """ |
| 64 | msc_pos = sys.version.find('MSC v.') |
| 65 | if msc_pos != -1: |
| 66 | msc_ver = sys.version[msc_pos+6:msc_pos+10] |
| 67 | if msc_ver == '1300': |
| 68 | # MSVC 7.0 |
| 69 | return ['msvcr70'] |
| 70 | elif msc_ver == '1310': |
| 71 | # MSVC 7.1 |
| 72 | return ['msvcr71'] |
| 73 | elif msc_ver == '1400': |
| 74 | # VS2005 / MSVC 8.0 |
| 75 | return ['msvcr80'] |
| 76 | elif msc_ver == '1500': |
| 77 | # VS2008 / MSVC 9.0 |
| 78 | return ['msvcr90'] |
| 79 | else: |
| 80 | raise ValueError("Unknown MS Compiler version %s " % msc_ver) |
| 81 | |
| 82 | |
| 83 | class CygwinCCompiler(UnixCCompiler): |
| 84 | """ Handles the Cygwin port of the GNU C compiler to Windows. |
| 85 | """ |
| 86 | name = 'cygwin' |
| 87 | description = 'Cygwin port of GNU C Compiler for Win32' |
| 88 | obj_extension = ".o" |
| 89 | static_lib_extension = ".a" |
| 90 | shared_lib_extension = ".dll" |
| 91 | static_lib_format = "lib%s%s" |
| 92 | shared_lib_format = "%s%s" |
| 93 | exe_extension = ".exe" |
| 94 | |
| 95 | def __init__(self, verbose=0, dry_run=False, force=False): |
| 96 | |
| 97 | UnixCCompiler.__init__(self, verbose, dry_run, force) |
| 98 | |
| 99 | status, details = check_config_h() |
| 100 | logger.debug("Python's GCC status: %s (details: %s)", status, details) |
| 101 | if status is not CONFIG_H_OK: |
| 102 | self.warn( |
| 103 | "Python's pyconfig.h doesn't seem to support your compiler. " |
| 104 | "Reason: %s. " |
| 105 | "Compiling may fail because of undefined preprocessor macros." |
| 106 | % details) |
| 107 | |
| 108 | self.gcc_version, self.ld_version, self.dllwrap_version = \ |
| 109 | get_compiler_versions() |
| 110 | logger.debug(self.name + ": gcc %s, ld %s, dllwrap %s\n", |
| 111 | self.gcc_version, |
| 112 | self.ld_version, |
| 113 | self.dllwrap_version) |
| 114 | |
| 115 | # ld_version >= "2.10.90" and < "2.13" should also be able to use |
| 116 | # gcc -mdll instead of dllwrap |
| 117 | # Older dllwraps had own version numbers, newer ones use the |
| 118 | # same as the rest of binutils ( also ld ) |
| 119 | # dllwrap 2.10.90 is buggy |
| 120 | if self.ld_version >= "2.10.90": |
| 121 | self.linker_dll = "gcc" |
| 122 | else: |
| 123 | self.linker_dll = "dllwrap" |
| 124 | |
| 125 | # ld_version >= "2.13" support -shared so use it instead of |
| 126 | # -mdll -static |
| 127 | if self.ld_version >= "2.13": |
| 128 | shared_option = "-shared" |
| 129 | else: |
| 130 | shared_option = "-mdll -static" |
| 131 | |
| 132 | # Hard-code GCC because that's what this is all about. |
| 133 | # XXX optimization, warnings etc. should be customizable. |
| 134 | self.set_executables(compiler='gcc -mcygwin -O -Wall', |
| 135 | compiler_so='gcc -mcygwin -mdll -O -Wall', |
| 136 | compiler_cxx='g++ -mcygwin -O -Wall', |
| 137 | linker_exe='gcc -mcygwin', |
| 138 | linker_so=('%s -mcygwin %s' % |
| 139 | (self.linker_dll, shared_option))) |
| 140 | |
| 141 | # cygwin and mingw32 need different sets of libraries |
| 142 | if self.gcc_version == "2.91.57": |
| 143 | # cygwin shouldn't need msvcrt, but without the dlls will crash |
| 144 | # (gcc version 2.91.57) -- perhaps something about initialization |
| 145 | self.dll_libraries=["msvcrt"] |
| 146 | self.warn( |
| 147 | "Consider upgrading to a newer version of gcc") |
| 148 | else: |
| 149 | # Include the appropriate MSVC runtime library if Python was built |
| 150 | # with MSVC 7.0 or later. |
| 151 | self.dll_libraries = get_msvcr() |
| 152 | |
| 153 | def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): |
| 154 | """Compile the source by spawning GCC and windres if needed.""" |
| 155 | if ext == '.rc' or ext == '.res': |
| 156 | # gcc needs '.res' and '.rc' compiled to object files !!! |
| 157 | try: |
| 158 | self.spawn(["windres", "-i", src, "-o", obj]) |
| 159 | except PackagingExecError as msg: |
| 160 | raise CompileError(msg) |
| 161 | else: # for other files use the C-compiler |
| 162 | try: |
| 163 | self.spawn(self.compiler_so + cc_args + [src, '-o', obj] + |
| 164 | extra_postargs) |
| 165 | except PackagingExecError as msg: |
| 166 | raise CompileError(msg) |
| 167 | |
| 168 | def link(self, target_desc, objects, output_filename, output_dir=None, |
| 169 | libraries=None, library_dirs=None, runtime_library_dirs=None, |
| 170 | export_symbols=None, debug=False, extra_preargs=None, |
| 171 | extra_postargs=None, build_temp=None, target_lang=None): |
| 172 | """Link the objects.""" |
| 173 | # use separate copies, so we can modify the lists |
Éric Araujo | 088025f | 2011-06-04 18:45:40 +0200 | [diff] [blame] | 174 | extra_preargs = list(extra_preargs or []) |
| 175 | libraries = list(libraries or []) |
| 176 | objects = list(objects or []) |
Tarek Ziade | 1231a4e | 2011-05-19 13:07:25 +0200 | [diff] [blame] | 177 | |
| 178 | # Additional libraries |
| 179 | libraries.extend(self.dll_libraries) |
| 180 | |
| 181 | # handle export symbols by creating a def-file |
| 182 | # with executables this only works with gcc/ld as linker |
| 183 | if ((export_symbols is not None) and |
| 184 | (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): |
| 185 | # (The linker doesn't do anything if output is up-to-date. |
| 186 | # So it would probably better to check if we really need this, |
| 187 | # but for this we had to insert some unchanged parts of |
| 188 | # UnixCCompiler, and this is not what we want.) |
| 189 | |
| 190 | # we want to put some files in the same directory as the |
| 191 | # object files are, build_temp doesn't help much |
| 192 | # where are the object files |
| 193 | temp_dir = os.path.dirname(objects[0]) |
| 194 | # name of dll to give the helper files the same base name |
| 195 | dll_name, dll_extension = os.path.splitext( |
| 196 | os.path.basename(output_filename)) |
| 197 | |
| 198 | # generate the filenames for these files |
| 199 | def_file = os.path.join(temp_dir, dll_name + ".def") |
| 200 | lib_file = os.path.join(temp_dir, 'lib' + dll_name + ".a") |
| 201 | |
| 202 | # Generate .def file |
| 203 | contents = [ |
| 204 | "LIBRARY %s" % os.path.basename(output_filename), |
| 205 | "EXPORTS"] |
| 206 | for sym in export_symbols: |
| 207 | contents.append(sym) |
| 208 | self.execute(write_file, (def_file, contents), |
| 209 | "writing %s" % def_file) |
| 210 | |
| 211 | # next add options for def-file and to creating import libraries |
| 212 | |
| 213 | # dllwrap uses different options than gcc/ld |
| 214 | if self.linker_dll == "dllwrap": |
| 215 | extra_preargs.extend(("--output-lib", lib_file)) |
| 216 | # for dllwrap we have to use a special option |
| 217 | extra_preargs.extend(("--def", def_file)) |
| 218 | # we use gcc/ld here and can be sure ld is >= 2.9.10 |
| 219 | else: |
| 220 | # doesn't work: bfd_close build\...\libfoo.a: Invalid operation |
| 221 | #extra_preargs.extend(("-Wl,--out-implib,%s" % lib_file)) |
| 222 | # for gcc/ld the def-file is specified as any object files |
| 223 | objects.append(def_file) |
| 224 | |
| 225 | #end: if ((export_symbols is not None) and |
| 226 | # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")): |
| 227 | |
| 228 | # who wants symbols and a many times larger output file |
| 229 | # should explicitly switch the debug mode on |
| 230 | # otherwise we let dllwrap/ld strip the output file |
| 231 | # (On my machine: 10KB < stripped_file < ??100KB |
| 232 | # unstripped_file = stripped_file + XXX KB |
| 233 | # ( XXX=254 for a typical python extension)) |
| 234 | if not debug: |
| 235 | extra_preargs.append("-s") |
| 236 | |
| 237 | UnixCCompiler.link(self, target_desc, objects, output_filename, |
| 238 | output_dir, libraries, library_dirs, |
| 239 | runtime_library_dirs, |
| 240 | None, # export_symbols, we do this in our def-file |
| 241 | debug, extra_preargs, extra_postargs, build_temp, |
| 242 | target_lang) |
| 243 | |
| 244 | # -- Miscellaneous methods ----------------------------------------- |
| 245 | |
| 246 | def object_filenames(self, source_filenames, strip_dir=False, |
| 247 | output_dir=''): |
| 248 | """Adds supports for rc and res files.""" |
| 249 | if output_dir is None: |
| 250 | output_dir = '' |
| 251 | obj_names = [] |
| 252 | for src_name in source_filenames: |
| 253 | # use normcase to make sure '.rc' is really '.rc' and not '.RC' |
| 254 | base, ext = os.path.splitext(os.path.normcase(src_name)) |
| 255 | if ext not in (self.src_extensions + ['.rc','.res']): |
| 256 | raise UnknownFileError("unknown file type '%s' (from '%s')" % (ext, src_name)) |
| 257 | if strip_dir: |
| 258 | base = os.path.basename (base) |
| 259 | if ext in ('.res', '.rc'): |
| 260 | # these need to be compiled to object files |
| 261 | obj_names.append (os.path.join(output_dir, |
| 262 | base + ext + self.obj_extension)) |
| 263 | else: |
| 264 | obj_names.append (os.path.join(output_dir, |
| 265 | base + self.obj_extension)) |
| 266 | return obj_names |
| 267 | |
| 268 | # the same as cygwin plus some additional parameters |
| 269 | class Mingw32CCompiler(CygwinCCompiler): |
| 270 | """ Handles the Mingw32 port of the GNU C compiler to Windows. |
| 271 | """ |
| 272 | name = 'mingw32' |
| 273 | description = 'MinGW32 compiler' |
| 274 | |
| 275 | def __init__(self, verbose=0, dry_run=False, force=False): |
| 276 | |
| 277 | CygwinCCompiler.__init__ (self, verbose, dry_run, force) |
| 278 | |
| 279 | # ld_version >= "2.13" support -shared so use it instead of |
| 280 | # -mdll -static |
| 281 | if self.ld_version >= "2.13": |
| 282 | shared_option = "-shared" |
| 283 | else: |
| 284 | shared_option = "-mdll -static" |
| 285 | |
| 286 | # A real mingw32 doesn't need to specify a different entry point, |
| 287 | # but cygwin 2.91.57 in no-cygwin-mode needs it. |
| 288 | if self.gcc_version <= "2.91.57": |
| 289 | entry_point = '--entry _DllMain@12' |
| 290 | else: |
| 291 | entry_point = '' |
| 292 | |
| 293 | self.set_executables(compiler='gcc -mno-cygwin -O -Wall', |
| 294 | compiler_so='gcc -mno-cygwin -mdll -O -Wall', |
| 295 | compiler_cxx='g++ -mno-cygwin -O -Wall', |
| 296 | linker_exe='gcc -mno-cygwin', |
| 297 | linker_so='%s -mno-cygwin %s %s' |
| 298 | % (self.linker_dll, shared_option, |
| 299 | entry_point)) |
| 300 | # Maybe we should also append -mthreads, but then the finished |
| 301 | # dlls need another dll (mingwm10.dll see Mingw32 docs) |
| 302 | # (-mthreads: Support thread-safe exception handling on `Mingw32') |
| 303 | |
| 304 | # no additional libraries needed |
| 305 | self.dll_libraries=[] |
| 306 | |
| 307 | # Include the appropriate MSVC runtime library if Python was built |
| 308 | # with MSVC 7.0 or later. |
| 309 | self.dll_libraries = get_msvcr() |
| 310 | |
| 311 | # Because these compilers aren't configured in Python's pyconfig.h file by |
| 312 | # default, we should at least warn the user if he is using a unmodified |
| 313 | # version. |
| 314 | |
| 315 | CONFIG_H_OK = "ok" |
| 316 | CONFIG_H_NOTOK = "not ok" |
| 317 | CONFIG_H_UNCERTAIN = "uncertain" |
| 318 | |
| 319 | def check_config_h(): |
| 320 | """Check if the current Python installation appears amenable to building |
| 321 | extensions with GCC. |
| 322 | |
| 323 | Returns a tuple (status, details), where 'status' is one of the following |
| 324 | constants: |
| 325 | |
| 326 | - CONFIG_H_OK: all is well, go ahead and compile |
| 327 | - CONFIG_H_NOTOK: doesn't look good |
| 328 | - CONFIG_H_UNCERTAIN: not sure -- unable to read pyconfig.h |
| 329 | |
| 330 | 'details' is a human-readable string explaining the situation. |
| 331 | |
| 332 | Note there are two ways to conclude "OK": either 'sys.version' contains |
| 333 | the string "GCC" (implying that this Python was built with GCC), or the |
| 334 | installed "pyconfig.h" contains the string "__GNUC__". |
| 335 | """ |
| 336 | |
| 337 | # XXX since this function also checks sys.version, it's not strictly a |
| 338 | # "pyconfig.h" check -- should probably be renamed... |
| 339 | # if sys.version contains GCC then python was compiled with GCC, and the |
| 340 | # pyconfig.h file should be OK |
| 341 | if "GCC" in sys.version: |
| 342 | return CONFIG_H_OK, "sys.version mentions 'GCC'" |
| 343 | |
| 344 | # let's see if __GNUC__ is mentioned in python.h |
| 345 | fn = sysconfig.get_config_h_filename() |
| 346 | try: |
| 347 | with open(fn) as config_h: |
| 348 | if "__GNUC__" in config_h.read(): |
| 349 | return CONFIG_H_OK, "'%s' mentions '__GNUC__'" % fn |
| 350 | else: |
| 351 | return CONFIG_H_NOTOK, "'%s' does not mention '__GNUC__'" % fn |
| 352 | except IOError as exc: |
| 353 | return (CONFIG_H_UNCERTAIN, |
| 354 | "couldn't read '%s': %s" % (fn, exc.strerror)) |