Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 1 | """distutils.unixccompiler |
| 2 | |
| 3 | Contains the UnixCCompiler class, a subclass of CCompiler that handles |
| 4 | the "typical" Unix-style command-line C compiler: |
| 5 | * macros defined with -Dname[=value] |
| 6 | * macros undefined with -Uname |
| 7 | * include search directories specified with -Idir |
| 8 | * libraries specified with -lllib |
| 9 | * library search directories specified with -Ldir |
| 10 | * compile handled by 'cc' (or similar) executable with -c option: |
| 11 | compiles .c to .o |
| 12 | * link static library handled by 'ar' command (possibly with 'ranlib') |
| 13 | * link shared library handled by 'cc -shared' |
| 14 | """ |
| 15 | |
Greg Ward | 3ce77fd | 2000-03-02 01:49:45 +0000 | [diff] [blame] | 16 | __revision__ = "$Id$" |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 17 | |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 18 | import os, sys, re |
Jeremy Hylton | 022640d | 2002-06-13 15:01:38 +0000 | [diff] [blame] | 19 | from types import StringType, NoneType |
Jeremy Hylton | 022640d | 2002-06-13 15:01:38 +0000 | [diff] [blame] | 20 | |
Tarek Ziadé | dd7bef9 | 2010-03-05 00:16:02 +0000 | [diff] [blame] | 21 | from distutils import sysconfig |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 22 | from distutils.dep_util import newer |
Greg Ward | d151711 | 2000-05-30 01:56:44 +0000 | [diff] [blame] | 23 | from distutils.ccompiler import \ |
Greg Ward | 3add77f | 2000-05-30 02:02:49 +0000 | [diff] [blame] | 24 | CCompiler, gen_preprocess_options, gen_lib_options |
| 25 | from distutils.errors import \ |
| 26 | DistutilsExecError, CompileError, LibError, LinkError |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 27 | from distutils import log |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 28 | |
Ned Deily | 18fae3f | 2013-01-31 01:24:55 -0800 | [diff] [blame] | 29 | if sys.platform == 'darwin': |
| 30 | import _osx_support |
| 31 | |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 32 | # XXX Things not currently handled: |
| 33 | # * optimization/debug/warning flags; we just use whatever's in Python's |
| 34 | # Makefile and live with it. Is this adequate? If not, we might |
| 35 | # have to have a bunch of subclasses GNUCCompiler, SGICCompiler, |
| 36 | # SunCCompiler, and I suspect down that road lies madness. |
| 37 | # * even if we don't know a warning flag from an optimization flag, |
| 38 | # we need some way for outsiders to feed preprocessor/compiler/linker |
| 39 | # flags in to us -- eg. a sysadmin might want to mandate certain flags |
| 40 | # via a site config file, or a user might want to set something for |
| 41 | # compiling this module distribution only via the setup.py command |
| 42 | # line, whatever. As long as these options come from something on the |
| 43 | # current system, they can be as system-dependent as they like, and we |
| 44 | # should just happily stuff them into the preprocessor/compiler/linker |
| 45 | # options and carry on. |
| 46 | |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 47 | |
Jeremy Hylton | 022640d | 2002-06-13 15:01:38 +0000 | [diff] [blame] | 48 | class UnixCCompiler(CCompiler): |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 49 | |
Greg Ward | 0e3530b | 1999-09-29 12:22:50 +0000 | [diff] [blame] | 50 | compiler_type = 'unix' |
| 51 | |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 52 | # These are used by CCompiler in two places: the constructor sets |
| 53 | # instance attributes 'preprocessor', 'compiler', etc. from them, and |
| 54 | # 'set_executable()' allows any of these to be set. The defaults here |
| 55 | # are pretty generic; they will probably have to be set by an outsider |
| 56 | # (eg. using information discovered by the sysconfig about building |
| 57 | # Python extensions). |
| 58 | executables = {'preprocessor' : None, |
| 59 | 'compiler' : ["cc"], |
| 60 | 'compiler_so' : ["cc"], |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 61 | 'compiler_cxx' : ["cc"], |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 62 | 'linker_so' : ["cc", "-shared"], |
| 63 | 'linker_exe' : ["cc"], |
| 64 | 'archiver' : ["ar", "-cr"], |
| 65 | 'ranlib' : None, |
| 66 | } |
| 67 | |
Just van Rossum | 005dbb2 | 2002-02-11 15:31:50 +0000 | [diff] [blame] | 68 | if sys.platform[:6] == "darwin": |
| 69 | executables['ranlib'] = ["ranlib"] |
| 70 | |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 71 | # Needed for the filename generation methods provided by the base |
| 72 | # class, CCompiler. NB. whoever instantiates/uses a particular |
| 73 | # UnixCCompiler instance should set 'shared_lib_ext' -- we set a |
| 74 | # reasonable common default here, but it's not necessarily used on all |
| 75 | # Unices! |
| 76 | |
Andrew M. Kuchling | 7880e5e | 2001-04-05 15:46:48 +0000 | [diff] [blame] | 77 | src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"] |
Greg Ward | 32c4a8a | 2000-03-06 03:40:29 +0000 | [diff] [blame] | 78 | obj_extension = ".o" |
| 79 | static_lib_extension = ".a" |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 80 | shared_lib_extension = ".so" |
Jack Jansen | e259e59 | 2001-08-27 15:08:16 +0000 | [diff] [blame] | 81 | dylib_lib_extension = ".dylib" |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 82 | xcode_stub_lib_extension = ".tbd" |
Jack Jansen | e259e59 | 2001-08-27 15:08:16 +0000 | [diff] [blame] | 83 | static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s" |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 84 | xcode_stub_lib_format = dylib_lib_format |
Jason Tishler | d7e83a1 | 2003-04-18 17:27:47 +0000 | [diff] [blame] | 85 | if sys.platform == "cygwin": |
| 86 | exe_extension = ".exe" |
Greg Ward | c9f3187 | 2000-01-09 22:47:53 +0000 | [diff] [blame] | 87 | |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 88 | def preprocess(self, source, |
| 89 | output_file=None, macros=None, include_dirs=None, |
| 90 | extra_preargs=None, extra_postargs=None): |
| 91 | ignore, macros, include_dirs = \ |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 92 | self._fix_compile_args(None, macros, include_dirs) |
| 93 | pp_opts = gen_preprocess_options(macros, include_dirs) |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 94 | pp_args = self.preprocessor + pp_opts |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 95 | if output_file: |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 96 | pp_args.extend(['-o', output_file]) |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 97 | if extra_preargs: |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 98 | pp_args[:0] = extra_preargs |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 99 | if extra_postargs: |
Andrew M. Kuchling | 286b107 | 2001-07-16 14:19:20 +0000 | [diff] [blame] | 100 | pp_args.extend(extra_postargs) |
Andrew M. Kuchling | df453fd | 2002-09-09 12:16:58 +0000 | [diff] [blame] | 101 | pp_args.append(source) |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 102 | |
Andrew M. Kuchling | 286b107 | 2001-07-16 14:19:20 +0000 | [diff] [blame] | 103 | # We need to preprocess: either we're being forced to, or we're |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 104 | # generating output to stdout, or there's a target output file and |
| 105 | # the source file is newer than the target (or the target doesn't |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 106 | # exist). |
Guido van Rossum | 63a4740 | 2001-07-16 14:46:13 +0000 | [diff] [blame] | 107 | if self.force or output_file is None or newer(source, output_file): |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 108 | if output_file: |
| 109 | self.mkpath(os.path.dirname(output_file)) |
| 110 | try: |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 111 | self.spawn(pp_args) |
Greg Ward | 3ff3b03 | 2000-06-21 02:58:46 +0000 | [diff] [blame] | 112 | except DistutilsExecError, msg: |
| 113 | raise CompileError, msg |
| 114 | |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 115 | def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 116 | compiler_so = self.compiler_so |
| 117 | if sys.platform == 'darwin': |
Ned Deily | 18fae3f | 2013-01-31 01:24:55 -0800 | [diff] [blame] | 118 | compiler_so = _osx_support.compiler_fixup(compiler_so, |
| 119 | cc_args + extra_postargs) |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 120 | try: |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 121 | self.spawn(compiler_so + cc_args + [src, '-o', obj] + |
Jeremy Hylton | 1b046e4 | 2002-06-18 18:48:55 +0000 | [diff] [blame] | 122 | extra_postargs) |
| 123 | except DistutilsExecError, msg: |
| 124 | raise CompileError, msg |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 125 | |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 126 | def create_static_lib(self, objects, output_libname, |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 127 | output_dir=None, debug=0, target_lang=None): |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 128 | objects, output_dir = self._fix_object_args(objects, output_dir) |
Greg Ward | c9f3187 | 2000-01-09 22:47:53 +0000 | [diff] [blame] | 129 | |
Greg Ward | 32c4a8a | 2000-03-06 03:40:29 +0000 | [diff] [blame] | 130 | output_filename = \ |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 131 | self.library_filename(output_libname, output_dir=output_dir) |
Greg Ward | c9f3187 | 2000-01-09 22:47:53 +0000 | [diff] [blame] | 132 | |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 133 | if self._need_link(objects, output_filename): |
| 134 | self.mkpath(os.path.dirname(output_filename)) |
| 135 | self.spawn(self.archiver + |
| 136 | [output_filename] + |
| 137 | objects + self.objects) |
Greg Ward | 1c79330 | 2000-04-14 00:48:15 +0000 | [diff] [blame] | 138 | |
Greg Ward | 8eef583 | 2000-04-14 13:53:34 +0000 | [diff] [blame] | 139 | # Not many Unices required ranlib anymore -- SunOS 4.x is, I |
| 140 | # think the only major Unix that does. Maybe we need some |
| 141 | # platform intelligence here to skip ranlib if it's not |
| 142 | # needed -- or maybe Python's configure script took care of |
| 143 | # it for us, hence the check for leading colon. |
Greg Ward | 73076ff | 2000-06-25 02:05:29 +0000 | [diff] [blame] | 144 | if self.ranlib: |
Greg Ward | d151711 | 2000-05-30 01:56:44 +0000 | [diff] [blame] | 145 | try: |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 146 | self.spawn(self.ranlib + [output_filename]) |
Greg Ward | d151711 | 2000-05-30 01:56:44 +0000 | [diff] [blame] | 147 | except DistutilsExecError, msg: |
| 148 | raise LibError, msg |
Greg Ward | c9f3187 | 2000-01-09 22:47:53 +0000 | [diff] [blame] | 149 | else: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 150 | log.debug("skipping %s (up-to-date)", output_filename) |
Greg Ward | c9f3187 | 2000-01-09 22:47:53 +0000 | [diff] [blame] | 151 | |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 152 | def link(self, target_desc, objects, |
| 153 | output_filename, output_dir=None, libraries=None, |
| 154 | library_dirs=None, runtime_library_dirs=None, |
| 155 | export_symbols=None, debug=0, extra_preargs=None, |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 156 | extra_postargs=None, build_temp=None, target_lang=None): |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 157 | objects, output_dir = self._fix_object_args(objects, output_dir) |
| 158 | libraries, library_dirs, runtime_library_dirs = \ |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 159 | self._fix_lib_args(libraries, library_dirs, runtime_library_dirs) |
Greg Ward | 04d7832 | 1999-12-12 16:57:47 +0000 | [diff] [blame] | 160 | |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 161 | lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs, |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 162 | libraries) |
| 163 | if type(output_dir) not in (StringType, NoneType): |
Greg Ward | 10ca82b | 2000-02-10 02:51:32 +0000 | [diff] [blame] | 164 | raise TypeError, "'output_dir' must be a string or None" |
Greg Ward | 8037cb1 | 1999-09-13 03:12:53 +0000 | [diff] [blame] | 165 | if output_dir is not None: |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 166 | output_filename = os.path.join(output_dir, output_filename) |
Greg Ward | 170bdc0 | 1999-07-10 02:04:22 +0000 | [diff] [blame] | 167 | |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 168 | if self._need_link(objects, output_filename): |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 169 | ld_args = (objects + self.objects + |
Greg Ward | 32c4a8a | 2000-03-06 03:40:29 +0000 | [diff] [blame] | 170 | lib_opts + ['-o', output_filename]) |
Greg Ward | ba233fb | 2000-02-09 02:17:00 +0000 | [diff] [blame] | 171 | if debug: |
| 172 | ld_args[:0] = ['-g'] |
Greg Ward | 0e3530b | 1999-09-29 12:22:50 +0000 | [diff] [blame] | 173 | if extra_preargs: |
| 174 | ld_args[:0] = extra_preargs |
| 175 | if extra_postargs: |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 176 | ld_args.extend(extra_postargs) |
| 177 | self.mkpath(os.path.dirname(output_filename)) |
Greg Ward | d151711 | 2000-05-30 01:56:44 +0000 | [diff] [blame] | 178 | try: |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 179 | if target_desc == CCompiler.EXECUTABLE: |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 180 | linker = self.linker_exe[:] |
Greg Ward | 4240648 | 2000-09-27 02:08:14 +0000 | [diff] [blame] | 181 | else: |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 182 | linker = self.linker_so[:] |
| 183 | if target_lang == "c++" and self.compiler_cxx: |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 184 | # skip over environment variable settings if /usr/bin/env |
| 185 | # is used to set up the linker's environment. |
| 186 | # This is needed on OSX. Note: this assumes that the |
Tim Peters | 211219a | 2006-05-23 21:54:23 +0000 | [diff] [blame] | 187 | # normal and C++ compiler have the same environment |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 188 | # settings. |
| 189 | i = 0 |
| 190 | if os.path.basename(linker[0]) == "env": |
| 191 | i = 1 |
| 192 | while '=' in linker[i]: |
| 193 | i = i + 1 |
| 194 | |
| 195 | linker[i] = self.compiler_cxx[i] |
| 196 | |
| 197 | if sys.platform == 'darwin': |
Ned Deily | 18fae3f | 2013-01-31 01:24:55 -0800 | [diff] [blame] | 198 | linker = _osx_support.compiler_fixup(linker, ld_args) |
Ronald Oussoren | b02daf7 | 2006-05-23 12:01:11 +0000 | [diff] [blame] | 199 | |
Gustavo Niemeyer | 6b01685 | 2002-11-05 16:12:02 +0000 | [diff] [blame] | 200 | self.spawn(linker + ld_args) |
Greg Ward | d151711 | 2000-05-30 01:56:44 +0000 | [diff] [blame] | 201 | except DistutilsExecError, msg: |
| 202 | raise LinkError, msg |
Greg Ward | 8037cb1 | 1999-09-13 03:12:53 +0000 | [diff] [blame] | 203 | else: |
Jeremy Hylton | cd8a114 | 2002-06-04 20:14:43 +0000 | [diff] [blame] | 204 | log.debug("skipping %s (up-to-date)", output_filename) |
Greg Ward | 5e71744 | 1999-08-14 23:53:53 +0000 | [diff] [blame] | 205 | |
Greg Ward | 32c4a8a | 2000-03-06 03:40:29 +0000 | [diff] [blame] | 206 | # -- Miscellaneous methods ----------------------------------------- |
| 207 | # These are all used by the 'gen_lib_options() function, in |
| 208 | # ccompiler.py. |
Fred Drake | b94b849 | 2001-12-06 20:51:35 +0000 | [diff] [blame] | 209 | |
Jeremy Hylton | 28f46e1 | 2002-06-13 14:58:30 +0000 | [diff] [blame] | 210 | def library_dir_option(self, dir): |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 211 | return "-L" + dir |
| 212 | |
Tarek Ziadé | c25417f | 2010-01-08 23:42:23 +0000 | [diff] [blame] | 213 | def _is_gcc(self, compiler_name): |
| 214 | return "gcc" in compiler_name or "g++" in compiler_name |
| 215 | |
Jeremy Hylton | 28f46e1 | 2002-06-13 14:58:30 +0000 | [diff] [blame] | 216 | def runtime_library_dir_option(self, dir): |
Fred Drake | d15db5c | 2001-12-11 05:04:24 +0000 | [diff] [blame] | 217 | # XXX Hackish, at the very least. See Python bug #445902: |
| 218 | # http://sourceforge.net/tracker/index.php |
| 219 | # ?func=detail&aid=445902&group_id=5470&atid=105470 |
| 220 | # Linkers on different platforms need different options to |
| 221 | # specify that directories need to be added to the list of |
| 222 | # directories searched for dependencies when a dynamic library |
Tarek Ziadé | dd7bef9 | 2010-03-05 00:16:02 +0000 | [diff] [blame] | 223 | # is sought. GCC has to be told to pass the -R option through |
| 224 | # to the linker, whereas other compilers just know this. |
Fred Drake | d15db5c | 2001-12-11 05:04:24 +0000 | [diff] [blame] | 225 | # Other compilers may need something slightly different. At |
| 226 | # this time, there's no way to determine this information from |
| 227 | # the configuration data stored in the Python installation, so |
| 228 | # we use this hack. |
Tarek Ziadé | dd7bef9 | 2010-03-05 00:16:02 +0000 | [diff] [blame] | 229 | compiler = os.path.basename(sysconfig.get_config_var("CC")) |
Skip Montanaro | 628e3bf | 2002-10-09 21:37:18 +0000 | [diff] [blame] | 230 | if sys.platform[:6] == "darwin": |
| 231 | # MacOSX's linker doesn't understand the -R flag at all |
| 232 | return "-L" + dir |
Stefan Krah | 2246f39 | 2016-08-03 11:23:31 +0200 | [diff] [blame] | 233 | elif sys.platform[:7] == "freebsd": |
| 234 | return "-Wl,-rpath=" + dir |
Jack Jansen | 19c0d94 | 2003-06-01 19:27:40 +0000 | [diff] [blame] | 235 | elif sys.platform[:5] == "hp-ux": |
Tarek Ziadé | c25417f | 2010-01-08 23:42:23 +0000 | [diff] [blame] | 236 | if self._is_gcc(compiler): |
Tarek Ziadé | bed26a3 | 2009-09-09 08:14:20 +0000 | [diff] [blame] | 237 | return ["-Wl,+s", "-L" + dir] |
| 238 | return ["+s", "-L" + dir] |
Martin v. Löwis | 061f132 | 2004-08-29 16:40:55 +0000 | [diff] [blame] | 239 | elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5": |
| 240 | return ["-rpath", dir] |
Tarek Ziadé | c25417f | 2010-01-08 23:42:23 +0000 | [diff] [blame] | 241 | elif self._is_gcc(compiler): |
Tarek Ziadé | dd7bef9 | 2010-03-05 00:16:02 +0000 | [diff] [blame] | 242 | return "-Wl,-R" + dir |
Tarek Ziadé | 439bf93 | 2009-06-20 13:57:20 +0000 | [diff] [blame] | 243 | else: |
Tarek Ziadé | 439bf93 | 2009-06-20 13:57:20 +0000 | [diff] [blame] | 244 | return "-R" + dir |
Greg Ward | d03f88a | 2000-03-18 15:19:51 +0000 | [diff] [blame] | 245 | |
Jeremy Hylton | 28f46e1 | 2002-06-13 14:58:30 +0000 | [diff] [blame] | 246 | def library_option(self, lib): |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 247 | return "-l" + lib |
| 248 | |
Jeremy Hylton | 28f46e1 | 2002-06-13 14:58:30 +0000 | [diff] [blame] | 249 | def find_library_file(self, dirs, lib, debug=0): |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 250 | shared_f = self.library_filename(lib, lib_type='shared') |
| 251 | dylib_f = self.library_filename(lib, lib_type='dylib') |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 252 | xcode_stub_f = self.library_filename(lib, lib_type='xcode_stub') |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 253 | static_f = self.library_filename(lib, lib_type='static') |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 254 | |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 255 | if sys.platform == 'darwin': |
| 256 | # On OSX users can specify an alternate SDK using |
| 257 | # '-isysroot', calculate the SDK root if it is specified |
| 258 | # (and use it further on) |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 259 | # |
| 260 | # Note that, as of Xcode 7, Apple SDKs may contain textual stub |
| 261 | # libraries with .tbd extensions rather than the normal .dylib |
| 262 | # shared libraries installed in /. The Apple compiler tool |
| 263 | # chain handles this transparently but it can cause problems |
| 264 | # for programs that are being built with an SDK and searching |
| 265 | # for specific libraries. Callers of find_library_file need to |
| 266 | # keep in mind that the base filename of the returned SDK library |
| 267 | # file might have a different extension from that of the library |
| 268 | # file installed on the running system, for example: |
| 269 | # /Applications/Xcode.app/Contents/Developer/Platforms/ |
| 270 | # MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/ |
| 271 | # usr/lib/libedit.tbd |
| 272 | # vs |
| 273 | # /usr/lib/libedit.dylib |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 274 | cflags = sysconfig.get_config_var('CFLAGS') |
| 275 | m = re.search(r'-isysroot\s+(\S+)', cflags) |
| 276 | if m is None: |
| 277 | sysroot = '/' |
| 278 | else: |
| 279 | sysroot = m.group(1) |
| 280 | |
| 281 | |
| 282 | |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 283 | for dir in dirs: |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 284 | shared = os.path.join(dir, shared_f) |
| 285 | dylib = os.path.join(dir, dylib_f) |
| 286 | static = os.path.join(dir, static_f) |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 287 | xcode_stub = os.path.join(dir, xcode_stub_f) |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 288 | |
| 289 | if sys.platform == 'darwin' and ( |
Ronald Oussoren | cd17213 | 2010-06-27 12:36:16 +0000 | [diff] [blame] | 290 | dir.startswith('/System/') or ( |
| 291 | dir.startswith('/usr/') and not dir.startswith('/usr/local/'))): |
| 292 | |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 293 | shared = os.path.join(sysroot, dir[1:], shared_f) |
| 294 | dylib = os.path.join(sysroot, dir[1:], dylib_f) |
| 295 | static = os.path.join(sysroot, dir[1:], static_f) |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 296 | xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f) |
Ronald Oussoren | 593e4ca | 2010-06-03 09:47:21 +0000 | [diff] [blame] | 297 | |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 298 | # We're second-guessing the linker here, with not much hard |
| 299 | # data to go on: GCC seems to prefer the shared library, so I'm |
| 300 | # assuming that *all* Unix C compilers do. And of course I'm |
| 301 | # ignoring even GCC's "-static" option. So sue me. |
Jack Jansen | e259e59 | 2001-08-27 15:08:16 +0000 | [diff] [blame] | 302 | if os.path.exists(dylib): |
| 303 | return dylib |
Ned Deily | 83abccb | 2016-02-25 00:55:24 +1100 | [diff] [blame] | 304 | elif os.path.exists(xcode_stub): |
| 305 | return xcode_stub |
Jack Jansen | e259e59 | 2001-08-27 15:08:16 +0000 | [diff] [blame] | 306 | elif os.path.exists(shared): |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 307 | return shared |
Greg Ward | be86bde | 2000-09-26 01:56:15 +0000 | [diff] [blame] | 308 | elif os.path.exists(static): |
Greg Ward | 4fecfce | 1999-10-03 20:45:33 +0000 | [diff] [blame] | 309 | return static |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 310 | |
Jeremy Hylton | 129b17d | 2002-06-13 15:14:10 +0000 | [diff] [blame] | 311 | # Oops, didn't find it in *any* of 'dirs' |
| 312 | return None |