blob: 5d45faa741f100d2b7823a6c03e9b533e8f0f8d4 [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
26# XXX Things not currently handled:
27# * optimization/debug/warning flags; we just use whatever's in Python's
28# Makefile and live with it. Is this adequate? If not, we might
29# have to have a bunch of subclasses GNUCCompiler, SGICCompiler,
30# SunCCompiler, and I suspect down that road lies madness.
31# * even if we don't know a warning flag from an optimization flag,
32# we need some way for outsiders to feed preprocessor/compiler/linker
33# flags in to us -- eg. a sysadmin might want to mandate certain flags
34# via a site config file, or a user might want to set something for
35# compiling this module distribution only via the setup.py command
36# line, whatever. As long as these options come from something on the
37# current system, they can be as system-dependent as they like, and we
38# should just happily stuff them into the preprocessor/compiler/linker
39# options and carry on.
40
Thomas Wouters477c8d52006-05-27 19:21:47 +000041def _darwin_compiler_fixup(compiler_so, cc_args):
42 """
43 This function will strip '-isysroot PATH' and '-arch ARCH' from the
44 compile flags if the user has specified one them in extra_compile_flags.
45
46 This is needed because '-arch ARCH' adds another architecture to the
47 build, without a way to remove an architecture. Furthermore GCC will
48 barf if multiple '-isysroot' arguments are present.
49 """
Collin Winter5b7e9d72007-08-30 03:52:21 +000050 stripArch = stripSysroot = False
Thomas Wouters477c8d52006-05-27 19:21:47 +000051
52 compiler_so = list(compiler_so)
53 kernel_version = os.uname()[2] # 8.4.3
54 major_version = int(kernel_version.split('.')[0])
55
56 if major_version < 8:
57 # OSX before 10.4.0, these don't support -arch and -isysroot at
58 # all.
59 stripArch = stripSysroot = True
60 else:
61 stripArch = '-arch' in cc_args
62 stripSysroot = '-isysroot' in cc_args
63
Georg Brandlfcaf9102008-07-16 02:17:56 +000064 if stripArch or 'ARCHFLAGS' in os.environ:
Collin Winter5b7e9d72007-08-30 03:52:21 +000065 while True:
Thomas Wouters477c8d52006-05-27 19:21:47 +000066 try:
67 index = compiler_so.index('-arch')
68 # Strip this argument and the next one:
69 del compiler_so[index:index+2]
70 except ValueError:
71 break
72
Georg Brandlfcaf9102008-07-16 02:17:56 +000073 if 'ARCHFLAGS' in os.environ and not stripArch:
74 # User specified different -arch flags in the environ,
Tarek Ziadé36797272010-07-22 12:50:05 +000075 # see also distutils.sysconfig
Georg Brandl3dbca812008-07-23 16:10:53 +000076 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
Georg Brandlfcaf9102008-07-16 02:17:56 +000077
Thomas Wouters477c8d52006-05-27 19:21:47 +000078 if stripSysroot:
79 try:
80 index = compiler_so.index('-isysroot')
81 # Strip this argument and the next one:
Thomas Wouters0e3f5912006-08-11 14:57:12 +000082 del compiler_so[index:index+2]
Thomas Wouters477c8d52006-05-27 19:21:47 +000083 except ValueError:
84 pass
85
Ned Deilycbfb9a52012-06-23 16:02:19 -070086 # Check if the SDK that is used during compilation actually exists.
87 # If not, revert to using the installed headers and hope for the best.
Thomas Wouters89f507f2006-12-13 04:49:30 +000088 sysroot = None
89 if '-isysroot' in cc_args:
90 idx = cc_args.index('-isysroot')
91 sysroot = cc_args[idx+1]
92 elif '-isysroot' in compiler_so:
93 idx = compiler_so.index('-isysroot')
94 sysroot = compiler_so[idx+1]
95
96 if sysroot and not os.path.isdir(sysroot):
97 log.warn("Compiling with an SDK that doesn't seem to exist: %s",
98 sysroot)
Ned Deilycbfb9a52012-06-23 16:02:19 -070099 log.warn("Attempting to compile without the SDK")
100 while True:
101 try:
102 index = cc_args.index('-isysroot')
103 # Strip this argument and the next one:
104 del cc_args[index:index+2]
105 except ValueError:
106 break
107 while True:
108 try:
109 index = compiler_so.index('-isysroot')
110 # Strip this argument and the next one:
111 del compiler_so[index:index+2]
112 except ValueError:
113 break
Thomas Wouters89f507f2006-12-13 04:49:30 +0000114
Thomas Wouters477c8d52006-05-27 19:21:47 +0000115 return compiler_so
116
Jeremy Hylton022640d2002-06-13 15:01:38 +0000117class UnixCCompiler(CCompiler):
Greg Ward170bdc01999-07-10 02:04:22 +0000118
Greg Ward0e3530b1999-09-29 12:22:50 +0000119 compiler_type = 'unix'
120
Greg Ward73076ff2000-06-25 02:05:29 +0000121 # These are used by CCompiler in two places: the constructor sets
122 # instance attributes 'preprocessor', 'compiler', etc. from them, and
123 # 'set_executable()' allows any of these to be set. The defaults here
124 # are pretty generic; they will probably have to be set by an outsider
125 # (eg. using information discovered by the sysconfig about building
126 # Python extensions).
127 executables = {'preprocessor' : None,
128 'compiler' : ["cc"],
129 'compiler_so' : ["cc"],
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000130 'compiler_cxx' : ["cc"],
Greg Ward73076ff2000-06-25 02:05:29 +0000131 'linker_so' : ["cc", "-shared"],
132 'linker_exe' : ["cc"],
133 'archiver' : ["ar", "-cr"],
134 'ranlib' : None,
135 }
136
Just van Rossum005dbb22002-02-11 15:31:50 +0000137 if sys.platform[:6] == "darwin":
138 executables['ranlib'] = ["ranlib"]
139
Greg Ward73076ff2000-06-25 02:05:29 +0000140 # Needed for the filename generation methods provided by the base
141 # class, CCompiler. NB. whoever instantiates/uses a particular
142 # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
143 # reasonable common default here, but it's not necessarily used on all
144 # Unices!
145
Andrew M. Kuchling7880e5e2001-04-05 15:46:48 +0000146 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +0000147 obj_extension = ".o"
148 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +0000149 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +0000150 dylib_lib_extension = ".dylib"
151 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Jason Tishlerd7e83a12003-04-18 17:27:47 +0000152 if sys.platform == "cygwin":
153 exe_extension = ".exe"
Greg Wardc9f31872000-01-09 22:47:53 +0000154
Collin Winter5b7e9d72007-08-30 03:52:21 +0000155 def preprocess(self, source, output_file=None, macros=None,
156 include_dirs=None, extra_preargs=None, extra_postargs=None):
157 fixed_args = self._fix_compile_args(None, macros, include_dirs)
158 ignore, macros, include_dirs = fixed_args
Greg Wardbe86bde2000-09-26 01:56:15 +0000159 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000160 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +0000161 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +0000162 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +0000163 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +0000164 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +0000165 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000166 pp_args.extend(extra_postargs)
Andrew M. Kuchlingdf453fd2002-09-09 12:16:58 +0000167 pp_args.append(source)
Greg Ward3ff3b032000-06-21 02:58:46 +0000168
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000169 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000170 # generating output to stdout, or there's a target output file and
171 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000172 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000173 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000174 if output_file:
175 self.mkpath(os.path.dirname(output_file))
176 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000177 self.spawn(pp_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000178 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000179 raise CompileError(msg)
Greg Ward3ff3b032000-06-21 02:58:46 +0000180
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000181 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Thomas Wouters477c8d52006-05-27 19:21:47 +0000182 compiler_so = self.compiler_so
183 if sys.platform == 'darwin':
184 compiler_so = _darwin_compiler_fixup(compiler_so, cc_args + extra_postargs)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000185 try:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000186 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000187 extra_postargs)
Guido van Rossumb940e112007-01-10 16:19:56 +0000188 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000189 raise CompileError(msg)
Greg Ward170bdc01999-07-10 02:04:22 +0000190
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000191 def create_static_lib(self, objects, output_libname,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000192 output_dir=None, debug=0, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000193 objects, output_dir = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000194
Greg Ward32c4a8a2000-03-06 03:40:29 +0000195 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000196 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000197
Greg Wardbe86bde2000-09-26 01:56:15 +0000198 if self._need_link(objects, output_filename):
199 self.mkpath(os.path.dirname(output_filename))
200 self.spawn(self.archiver +
201 [output_filename] +
202 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000203
Greg Ward8eef5832000-04-14 13:53:34 +0000204 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
205 # think the only major Unix that does. Maybe we need some
206 # platform intelligence here to skip ranlib if it's not
207 # needed -- or maybe Python's configure script took care of
208 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000209 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000210 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000211 self.spawn(self.ranlib + [output_filename])
Guido van Rossumb940e112007-01-10 16:19:56 +0000212 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000213 raise LibError(msg)
Greg Wardc9f31872000-01-09 22:47:53 +0000214 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000215 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000216
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000217 def link(self, target_desc, objects,
218 output_filename, output_dir=None, libraries=None,
219 library_dirs=None, runtime_library_dirs=None,
220 export_symbols=None, debug=0, extra_preargs=None,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000221 extra_postargs=None, build_temp=None, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000222 objects, output_dir = self._fix_object_args(objects, output_dir)
Collin Winter5b7e9d72007-08-30 03:52:21 +0000223 fixed_args = self._fix_lib_args(libraries, library_dirs,
224 runtime_library_dirs)
225 libraries, library_dirs, runtime_library_dirs = fixed_args
Greg Ward04d78321999-12-12 16:57:47 +0000226
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000227 lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs,
Greg Wardbe86bde2000-09-26 01:56:15 +0000228 libraries)
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000229 if not isinstance(output_dir, (str, type(None))):
Collin Winter5b7e9d72007-08-30 03:52:21 +0000230 raise TypeError("'output_dir' must be a string or None")
Greg Ward8037cb11999-09-13 03:12:53 +0000231 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000232 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000233
Greg Wardbe86bde2000-09-26 01:56:15 +0000234 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000235 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000236 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000237 if debug:
238 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000239 if extra_preargs:
240 ld_args[:0] = extra_preargs
241 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000242 ld_args.extend(extra_postargs)
243 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000244 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000245 if target_desc == CCompiler.EXECUTABLE:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000246 linker = self.linker_exe[:]
Greg Ward42406482000-09-27 02:08:14 +0000247 else:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000248 linker = self.linker_so[:]
249 if target_lang == "c++" and self.compiler_cxx:
Thomas Wouters477c8d52006-05-27 19:21:47 +0000250 # skip over environment variable settings if /usr/bin/env
251 # is used to set up the linker's environment.
252 # This is needed on OSX. Note: this assumes that the
253 # normal and C++ compiler have the same environment
254 # settings.
255 i = 0
256 if os.path.basename(linker[0]) == "env":
257 i = 1
258 while '=' in linker[i]:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000259 i += 1
Thomas Wouters477c8d52006-05-27 19:21:47 +0000260 linker[i] = self.compiler_cxx[i]
261
262 if sys.platform == 'darwin':
263 linker = _darwin_compiler_fixup(linker, ld_args)
264
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000265 self.spawn(linker + ld_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000266 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000267 raise LinkError(msg)
Greg Ward8037cb11999-09-13 03:12:53 +0000268 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000269 log.debug("skipping %s (up-to-date)", output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000270
Greg Ward32c4a8a2000-03-06 03:40:29 +0000271 # -- Miscellaneous methods -----------------------------------------
272 # These are all used by the 'gen_lib_options() function, in
273 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000274
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000275 def library_dir_option(self, dir):
Greg Ward4fecfce1999-10-03 20:45:33 +0000276 return "-L" + dir
277
Tarek Ziadéaf77a2f2010-01-08 23:57:53 +0000278 def _is_gcc(self, compiler_name):
279 return "gcc" in compiler_name or "g++" in compiler_name
280
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000281 def runtime_library_dir_option(self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000282 # XXX Hackish, at the very least. See Python bug #445902:
283 # http://sourceforge.net/tracker/index.php
284 # ?func=detail&aid=445902&group_id=5470&atid=105470
285 # Linkers on different platforms need different options to
286 # specify that directories need to be added to the list of
287 # directories searched for dependencies when a dynamic library
Tarek Ziadébe720e02009-05-09 11:55:12 +0000288 # is sought. GCC on GNU systems (Linux, FreeBSD, ...) has to
289 # be told to pass the -R option through to the linker, whereas
290 # other compilers and gcc on other systems just know this.
Fred Draked15db5c2001-12-11 05:04:24 +0000291 # Other compilers may need something slightly different. At
292 # this time, there's no way to determine this information from
293 # the configuration data stored in the Python installation, so
294 # we use this hack.
Tarek Ziadé36797272010-07-22 12:50:05 +0000295 compiler = os.path.basename(sysconfig.get_config_var("CC"))
Skip Montanaro628e3bf2002-10-09 21:37:18 +0000296 if sys.platform[:6] == "darwin":
297 # MacOSX's linker doesn't understand the -R flag at all
298 return "-L" + dir
Jack Jansen19c0d942003-06-01 19:27:40 +0000299 elif sys.platform[:5] == "hp-ux":
Tarek Ziadéaf77a2f2010-01-08 23:57:53 +0000300 if self._is_gcc(compiler):
Tarek Ziadé165581c2009-09-09 08:48:07 +0000301 return ["-Wl,+s", "-L" + dir]
302 return ["+s", "-L" + dir]
Martin v. Löwis061f1322004-08-29 16:40:55 +0000303 elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5":
304 return ["-rpath", dir]
Tarek Ziadé8f480e52009-06-28 21:30:52 +0000305 else:
Tarek Ziadé36797272010-07-22 12:50:05 +0000306 if self._is_gcc(compiler):
307 # gcc on non-GNU systems does not need -Wl, but can
308 # use it anyway. Since distutils has always passed in
309 # -Wl whenever gcc was used in the past it is probably
310 # safest to keep doing so.
311 if sysconfig.get_config_var("GNULD") == "yes":
312 # GNU ld needs an extra option to get a RUNPATH
313 # instead of just an RPATH.
314 return "-Wl,--enable-new-dtags,-R" + dir
315 else:
316 return "-Wl,-R" + dir
317 else:
318 # No idea how --enable-new-dtags would be passed on to
319 # ld if this system was using GNU ld. Don't know if a
320 # system like this even exists.
321 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000322
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000323 def library_option(self, lib):
Greg Ward4fecfce1999-10-03 20:45:33 +0000324 return "-l" + lib
325
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000326 def find_library_file(self, dirs, lib, debug=0):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000327 shared_f = self.library_filename(lib, lib_type='shared')
328 dylib_f = self.library_filename(lib, lib_type='dylib')
329 static_f = self.library_filename(lib, lib_type='static')
Tim Peters182b5ac2004-07-18 06:16:08 +0000330
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000331 if sys.platform == 'darwin':
332 # On OSX users can specify an alternate SDK using
333 # '-isysroot', calculate the SDK root if it is specified
334 # (and use it further on)
Tarek Ziadé36797272010-07-22 12:50:05 +0000335 cflags = sysconfig.get_config_var('CFLAGS')
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000336 m = re.search(r'-isysroot\s+(\S+)', cflags)
337 if m is None:
338 sysroot = '/'
339 else:
340 sysroot = m.group(1)
341
342
343
Greg Ward4fecfce1999-10-03 20:45:33 +0000344 for dir in dirs:
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000345 shared = os.path.join(dir, shared_f)
346 dylib = os.path.join(dir, dylib_f)
347 static = os.path.join(dir, static_f)
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000348
349 if sys.platform == 'darwin' and (
Ronald Oussorendc969e52010-06-27 12:37:46 +0000350 dir.startswith('/System/') or (
351 dir.startswith('/usr/') and not dir.startswith('/usr/local/'))):
352
Ronald Oussoren2c12ab12010-06-03 14:42:25 +0000353 shared = os.path.join(sysroot, dir[1:], shared_f)
354 dylib = os.path.join(sysroot, dir[1:], dylib_f)
355 static = os.path.join(sysroot, dir[1:], static_f)
356
Greg Ward4fecfce1999-10-03 20:45:33 +0000357 # We're second-guessing the linker here, with not much hard
358 # data to go on: GCC seems to prefer the shared library, so I'm
359 # assuming that *all* Unix C compilers do. And of course I'm
360 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000361 if os.path.exists(dylib):
362 return dylib
363 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000364 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000365 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000366 return static
Tim Peters182b5ac2004-07-18 06:16:08 +0000367
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000368 # Oops, didn't find it in *any* of 'dirs'
369 return None