blob: d10a78da311405f1152c93a063ffc1c702bde8fe [file] [log] [blame]
Greg Ward170bdc01999-07-10 02:04:22 +00001"""distutils.unixccompiler
2
3Contains the UnixCCompiler class, a subclass of CCompiler that handles
4the "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
Ronald Oussoren2c12ab12010-06-03 14:42:25 +000016import os, sys, re
Jeremy Hylton022640d2002-06-13 15:01:38 +000017
Tarek Ziadé36797272010-07-22 12:50:05 +000018from distutils import sysconfig
Greg Ward3ff3b032000-06-21 02:58:46 +000019from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000020from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000021 CCompiler, gen_preprocess_options, gen_lib_options
22from distutils.errors import \
23 DistutilsExecError, CompileError, LibError, LinkError
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000024from distutils import log
Greg Ward170bdc01999-07-10 02:04:22 +000025
Ned Deilydf8aa2b2012-07-21 05:36:30 -070026if sys.platform == 'darwin':
27 import _osx_support
28
Greg Ward170bdc01999-07-10 02:04:22 +000029# XXX Things not currently handled:
30# * optimization/debug/warning flags; we just use whatever's in Python's
31# Makefile and live with it. Is this adequate? If not, we might
32# have to have a bunch of subclasses GNUCCompiler, SGICCompiler,
33# SunCCompiler, and I suspect down that road lies madness.
34# * even if we don't know a warning flag from an optimization flag,
35# we need some way for outsiders to feed preprocessor/compiler/linker
36# flags in to us -- eg. a sysadmin might want to mandate certain flags
37# via a site config file, or a user might want to set something for
38# compiling this module distribution only via the setup.py command
39# line, whatever. As long as these options come from something on the
40# current system, they can be as system-dependent as they like, and we
41# should just happily stuff them into the preprocessor/compiler/linker
42# options and carry on.
43
Thomas Wouters477c8d52006-05-27 19:21:47 +000044
Jeremy Hylton022640d2002-06-13 15:01:38 +000045class UnixCCompiler(CCompiler):
Greg Ward170bdc01999-07-10 02:04:22 +000046
Greg Ward0e3530b1999-09-29 12:22:50 +000047 compiler_type = 'unix'
48
Greg Ward73076ff2000-06-25 02:05:29 +000049 # These are used by CCompiler in two places: the constructor sets
50 # instance attributes 'preprocessor', 'compiler', etc. from them, and
51 # 'set_executable()' allows any of these to be set. The defaults here
52 # are pretty generic; they will probably have to be set by an outsider
53 # (eg. using information discovered by the sysconfig about building
54 # Python extensions).
55 executables = {'preprocessor' : None,
56 'compiler' : ["cc"],
57 'compiler_so' : ["cc"],
Gustavo Niemeyer6b016852002-11-05 16:12:02 +000058 'compiler_cxx' : ["cc"],
Greg Ward73076ff2000-06-25 02:05:29 +000059 'linker_so' : ["cc", "-shared"],
60 'linker_exe' : ["cc"],
61 'archiver' : ["ar", "-cr"],
62 'ranlib' : None,
63 }
64
Just van Rossum005dbb22002-02-11 15:31:50 +000065 if sys.platform[:6] == "darwin":
66 executables['ranlib'] = ["ranlib"]
67
Greg Ward73076ff2000-06-25 02:05:29 +000068 # Needed for the filename generation methods provided by the base
69 # class, CCompiler. NB. whoever instantiates/uses a particular
70 # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
71 # reasonable common default here, but it's not necessarily used on all
72 # Unices!
73
Andrew M. Kuchling7880e5e2001-04-05 15:46:48 +000074 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +000075 obj_extension = ".o"
76 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +000077 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +000078 dylib_lib_extension = ".dylib"
Ned Deily020250f2016-02-25 00:56:38 +110079 xcode_stub_lib_extension = ".tbd"
Jack Jansene259e592001-08-27 15:08:16 +000080 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Ned Deily020250f2016-02-25 00:56:38 +110081 xcode_stub_lib_format = dylib_lib_format
Jason Tishlerd7e83a12003-04-18 17:27:47 +000082 if sys.platform == "cygwin":
83 exe_extension = ".exe"
Greg Wardc9f31872000-01-09 22:47:53 +000084
Collin Winter5b7e9d72007-08-30 03:52:21 +000085 def preprocess(self, source, output_file=None, macros=None,
86 include_dirs=None, extra_preargs=None, extra_postargs=None):
87 fixed_args = self._fix_compile_args(None, macros, include_dirs)
88 ignore, macros, include_dirs = fixed_args
Greg Wardbe86bde2000-09-26 01:56:15 +000089 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +000090 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +000091 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +000092 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +000093 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +000094 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +000095 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +000096 pp_args.extend(extra_postargs)
Andrew M. Kuchlingdf453fd2002-09-09 12:16:58 +000097 pp_args.append(source)
Greg Ward3ff3b032000-06-21 02:58:46 +000098
Andrew M. Kuchling286b1072001-07-16 14:19:20 +000099 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000100 # generating output to stdout, or there's a target output file and
101 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000102 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000103 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000104 if output_file:
105 self.mkpath(os.path.dirname(output_file))
106 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000107 self.spawn(pp_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000108 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000109 raise CompileError(msg)
Greg Ward3ff3b032000-06-21 02:58:46 +0000110
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000111 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000112 compiler_so = self.compiler_so
113 if sys.platform == 'darwin':
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700114 compiler_so = _osx_support.compiler_fixup(compiler_so,
115 cc_args + extra_postargs)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000116 try:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000117 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000118 extra_postargs)
Guido van Rossumb940e112007-01-10 16:19:56 +0000119 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000120 raise CompileError(msg)
Greg Ward170bdc01999-07-10 02:04:22 +0000121
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000122 def create_static_lib(self, objects, output_libname,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000123 output_dir=None, debug=0, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000124 objects, output_dir = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000125
Greg Ward32c4a8a2000-03-06 03:40:29 +0000126 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000127 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000128
Greg Wardbe86bde2000-09-26 01:56:15 +0000129 if self._need_link(objects, output_filename):
130 self.mkpath(os.path.dirname(output_filename))
131 self.spawn(self.archiver +
132 [output_filename] +
133 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000134
Greg Ward8eef5832000-04-14 13:53:34 +0000135 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
136 # think the only major Unix that does. Maybe we need some
137 # platform intelligence here to skip ranlib if it's not
138 # needed -- or maybe Python's configure script took care of
139 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000140 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000141 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000142 self.spawn(self.ranlib + [output_filename])
Guido van Rossumb940e112007-01-10 16:19:56 +0000143 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000144 raise LibError(msg)
Greg Wardc9f31872000-01-09 22:47:53 +0000145 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000146 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000147
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000148 def link(self, target_desc, objects,
149 output_filename, output_dir=None, libraries=None,
150 library_dirs=None, runtime_library_dirs=None,
151 export_symbols=None, debug=0, extra_preargs=None,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000152 extra_postargs=None, build_temp=None, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000153 objects, output_dir = self._fix_object_args(objects, output_dir)
Collin Winter5b7e9d72007-08-30 03:52:21 +0000154 fixed_args = self._fix_lib_args(libraries, library_dirs,
155 runtime_library_dirs)
156 libraries, library_dirs, runtime_library_dirs = fixed_args
Greg Ward04d78321999-12-12 16:57:47 +0000157
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000158 lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs,
Greg Wardbe86bde2000-09-26 01:56:15 +0000159 libraries)
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000160 if not isinstance(output_dir, (str, type(None))):
Collin Winter5b7e9d72007-08-30 03:52:21 +0000161 raise TypeError("'output_dir' must be a string or None")
Greg Ward8037cb11999-09-13 03:12:53 +0000162 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000163 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000164
Greg Wardbe86bde2000-09-26 01:56:15 +0000165 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000166 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000167 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000168 if debug:
169 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000170 if extra_preargs:
171 ld_args[:0] = extra_preargs
172 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000173 ld_args.extend(extra_postargs)
174 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000175 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000176 if target_desc == CCompiler.EXECUTABLE:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000177 linker = self.linker_exe[:]
Greg Ward42406482000-09-27 02:08:14 +0000178 else:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000179 linker = self.linker_so[:]
180 if target_lang == "c++" and self.compiler_cxx:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000181 # skip over environment variable settings if /usr/bin/env
182 # is used to set up the linker's environment.
183 # This is needed on OSX. Note: this assumes that the
184 # normal and C++ compiler have the same environment
185 # settings.
186 i = 0
187 if os.path.basename(linker[0]) == "env":
188 i = 1
189 while '=' in linker[i]:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000190 i += 1
Kevin Adler800d5cd2019-03-04 08:48:40 -0600191
192 if os.path.basename(linker[i]) == 'ld_so_aix':
193 # AIX platforms prefix the compiler with the ld_so_aix
194 # script, so we need to adjust our linker index
195 offset = 1
196 else:
197 offset = 0
198
199 linker[i+offset] = self.compiler_cxx[i]
Thomas Wouters477c8d52006-05-27 19:21:47 +0000200
201 if sys.platform == 'darwin':
Ned Deilydf8aa2b2012-07-21 05:36:30 -0700202 linker = _osx_support.compiler_fixup(linker, ld_args)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000203
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000204 self.spawn(linker + ld_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000205 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000206 raise LinkError(msg)
Greg Ward8037cb11999-09-13 03:12:53 +0000207 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000208 log.debug("skipping %s (up-to-date)", output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000209
Greg Ward32c4a8a2000-03-06 03:40:29 +0000210 # -- Miscellaneous methods -----------------------------------------
211 # These are all used by the 'gen_lib_options() function, in
212 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000213
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000214 def library_dir_option(self, dir):
Greg Ward4fecfce1999-10-03 20:45:33 +0000215 return "-L" + dir
216
Tarek Ziadéaf77a2f2010-01-08 23:57:53 +0000217 def _is_gcc(self, compiler_name):
218 return "gcc" in compiler_name or "g++" in compiler_name
219
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000220 def runtime_library_dir_option(self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000221 # XXX Hackish, at the very least. See Python bug #445902:
222 # http://sourceforge.net/tracker/index.php
223 # ?func=detail&aid=445902&group_id=5470&atid=105470
224 # Linkers on different platforms need different options to
225 # specify that directories need to be added to the list of
226 # directories searched for dependencies when a dynamic library
Tarek Ziadébe720e02009-05-09 11:55:12 +0000227 # is sought. GCC on GNU systems (Linux, FreeBSD, ...) has to
228 # be told to pass the -R option through to the linker, whereas
229 # other compilers and gcc on other systems just know this.
Fred Draked15db5c2001-12-11 05:04:24 +0000230 # Other compilers may need something slightly different. At
231 # this time, there's no way to determine this information from
232 # the configuration data stored in the Python installation, so
233 # we use this hack.
Tarek Ziadé36797272010-07-22 12:50:05 +0000234 compiler = os.path.basename(sysconfig.get_config_var("CC"))
Skip Montanaro628e3bf2002-10-09 21:37:18 +0000235 if sys.platform[:6] == "darwin":
236 # MacOSX's linker doesn't understand the -R flag at all
237 return "-L" + dir
Stefan Krah9de620e2016-08-03 11:18:26 +0200238 elif sys.platform[:7] == "freebsd":
239 return "-Wl,-rpath=" + dir
Jack Jansen19c0d942003-06-01 19:27:40 +0000240 elif sys.platform[:5] == "hp-ux":
Tarek Ziadéaf77a2f2010-01-08 23:57:53 +0000241 if self._is_gcc(compiler):
Tarek Ziadé165581c2009-09-09 08:48:07 +0000242 return ["-Wl,+s", "-L" + dir]
243 return ["+s", "-L" + dir]
Tarek Ziadé8f480e52009-06-28 21:30:52 +0000244 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000245 if self._is_gcc(compiler):
246 # gcc on non-GNU systems does not need -Wl, but can
247 # use it anyway. Since distutils has always passed in
248 # -Wl whenever gcc was used in the past it is probably
249 # safest to keep doing so.
250 if sysconfig.get_config_var("GNULD") == "yes":
251 # GNU ld needs an extra option to get a RUNPATH
252 # instead of just an RPATH.
253 return "-Wl,--enable-new-dtags,-R" + dir
254 else:
255 return "-Wl,-R" + dir
256 else:
257 # No idea how --enable-new-dtags would be passed on to
258 # ld if this system was using GNU ld. Don't know if a
259 # system like this even exists.
260 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000261
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000262 def library_option(self, lib):
Greg Ward4fecfce1999-10-03 20:45:33 +0000263 return "-l" + lib
264
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000265 def find_library_file(self, dirs, lib, debug=0):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000266 shared_f = self.library_filename(lib, lib_type='shared')
267 dylib_f = self.library_filename(lib, lib_type='dylib')
Ned Deily020250f2016-02-25 00:56:38 +1100268 xcode_stub_f = self.library_filename(lib, lib_type='xcode_stub')
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000269 static_f = self.library_filename(lib, lib_type='static')
Tim Peters182b5ac2004-07-18 06:16:08 +0000270
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000271 if sys.platform == 'darwin':
272 # On OSX users can specify an alternate SDK using
273 # '-isysroot', calculate the SDK root if it is specified
274 # (and use it further on)
Ned Deily020250f2016-02-25 00:56:38 +1100275 #
276 # Note that, as of Xcode 7, Apple SDKs may contain textual stub
277 # libraries with .tbd extensions rather than the normal .dylib
278 # shared libraries installed in /. The Apple compiler tool
279 # chain handles this transparently but it can cause problems
280 # for programs that are being built with an SDK and searching
281 # for specific libraries. Callers of find_library_file need to
282 # keep in mind that the base filename of the returned SDK library
283 # file might have a different extension from that of the library
284 # file installed on the running system, for example:
285 # /Applications/Xcode.app/Contents/Developer/Platforms/
286 # MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk/
287 # usr/lib/libedit.tbd
288 # vs
289 # /usr/lib/libedit.dylib
Tarek Ziadé36797272010-07-22 12:50:05 +0000290 cflags = sysconfig.get_config_var('CFLAGS')
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000291 m = re.search(r'-isysroot\s+(\S+)', cflags)
292 if m is None:
293 sysroot = '/'
294 else:
295 sysroot = m.group(1)
296
297
298
Greg Ward4fecfce1999-10-03 20:45:33 +0000299 for dir in dirs:
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000300 shared = os.path.join(dir, shared_f)
301 dylib = os.path.join(dir, dylib_f)
302 static = os.path.join(dir, static_f)
Ned Deily020250f2016-02-25 00:56:38 +1100303 xcode_stub = os.path.join(dir, xcode_stub_f)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000304
305 if sys.platform == 'darwin' and (
Ronald Oussorendc969e52010-06-27 12:37:46 +0000306 dir.startswith('/System/') or (
307 dir.startswith('/usr/') and not dir.startswith('/usr/local/'))):
308
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000309 shared = os.path.join(sysroot, dir[1:], shared_f)
310 dylib = os.path.join(sysroot, dir[1:], dylib_f)
311 static = os.path.join(sysroot, dir[1:], static_f)
Ned Deily020250f2016-02-25 00:56:38 +1100312 xcode_stub = os.path.join(sysroot, dir[1:], xcode_stub_f)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000313
Greg Ward4fecfce1999-10-03 20:45:33 +0000314 # We're second-guessing the linker here, with not much hard
315 # data to go on: GCC seems to prefer the shared library, so I'm
316 # assuming that *all* Unix C compilers do. And of course I'm
317 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000318 if os.path.exists(dylib):
319 return dylib
Ned Deily020250f2016-02-25 00:56:38 +1100320 elif os.path.exists(xcode_stub):
321 return xcode_stub
Jack Jansene259e592001-08-27 15:08:16 +0000322 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000323 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000324 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000325 return static
Tim Peters182b5ac2004-07-18 06:16:08 +0000326
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000327 # Oops, didn't find it in *any* of 'dirs'
328 return None