blob: 8fe1a6a13ace208cad4bb8357086e77be28fbbdd [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
Greg Ward3ce77fd2000-03-02 01:49:45 +000016__revision__ = "$Id$"
Greg Ward170bdc01999-07-10 02:04:22 +000017
Jeremy Hylton332a1462002-06-04 20:18:24 +000018import os, sys
Jeremy Hylton022640d2002-06-13 15:01:38 +000019from types import StringType, NoneType
Jeremy Hylton022640d2002-06-13 15:01:38 +000020
Greg Ward3ff3b032000-06-21 02:58:46 +000021from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000022from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000023 CCompiler, gen_preprocess_options, gen_lib_options
24from distutils.errors import \
25 DistutilsExecError, CompileError, LibError, LinkError
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000026from distutils import log
Greg Ward170bdc01999-07-10 02:04:22 +000027
Tarek Ziadé5633a802010-01-23 09:23:15 +000028
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
Ronald Oussorenb02daf72006-05-23 12:01:11 +000044def _darwin_compiler_fixup(compiler_so, cc_args):
45 """
46 This function will strip '-isysroot PATH' and '-arch ARCH' from the
47 compile flags if the user has specified one them in extra_compile_flags.
48
49 This is needed because '-arch ARCH' adds another architecture to the
50 build, without a way to remove an architecture. Furthermore GCC will
51 barf if multiple '-isysroot' arguments are present.
52 """
53 stripArch = stripSysroot = 0
54
55 compiler_so = list(compiler_so)
56 kernel_version = os.uname()[2] # 8.4.3
57 major_version = int(kernel_version.split('.')[0])
58
59 if major_version < 8:
60 # OSX before 10.4.0, these don't support -arch and -isysroot at
61 # all.
62 stripArch = stripSysroot = True
63 else:
64 stripArch = '-arch' in cc_args
65 stripSysroot = '-isysroot' in cc_args
66
Ronald Oussoren5640ce22008-06-05 12:58:24 +000067 if stripArch or 'ARCHFLAGS' in os.environ:
Ronald Oussorenb02daf72006-05-23 12:01:11 +000068 while 1:
69 try:
70 index = compiler_so.index('-arch')
71 # Strip this argument and the next one:
72 del compiler_so[index:index+2]
73 except ValueError:
74 break
75
Ronald Oussoren5640ce22008-06-05 12:58:24 +000076 if 'ARCHFLAGS' in os.environ and not stripArch:
77 # User specified different -arch flags in the environ,
Tarek Ziadé5633a802010-01-23 09:23:15 +000078 # see also the sysconfig
Jesse Nollera6c5dc02008-07-16 13:24:06 +000079 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
Ronald Oussoren5640ce22008-06-05 12:58:24 +000080
Ronald Oussorenb02daf72006-05-23 12:01:11 +000081 if stripSysroot:
82 try:
83 index = compiler_so.index('-isysroot')
84 # Strip this argument and the next one:
Ronald Oussoren7b9053a2006-06-27 10:08:25 +000085 del compiler_so[index:index+2]
Ronald Oussorenb02daf72006-05-23 12:01:11 +000086 except ValueError:
87 pass
88
Tim Petersef3f32f2006-10-18 05:09:12 +000089 # Check if the SDK that is used during compilation actually exists,
Ronald Oussorend6272a32006-10-08 17:51:46 +000090 # the universal build requires the usage of a universal SDK and not all
91 # users have that installed by default.
92 sysroot = None
93 if '-isysroot' in cc_args:
94 idx = cc_args.index('-isysroot')
95 sysroot = cc_args[idx+1]
96 elif '-isysroot' in compiler_so:
97 idx = compiler_so.index('-isysroot')
98 sysroot = compiler_so[idx+1]
99
100 if sysroot and not os.path.isdir(sysroot):
101 log.warn("Compiling with an SDK that doesn't seem to exist: %s",
102 sysroot)
103 log.warn("Please check your Xcode installation")
104
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000105 return compiler_so
106
Jeremy Hylton022640d2002-06-13 15:01:38 +0000107class UnixCCompiler(CCompiler):
Greg Ward170bdc01999-07-10 02:04:22 +0000108
Greg Ward0e3530b1999-09-29 12:22:50 +0000109 compiler_type = 'unix'
110
Greg Ward73076ff2000-06-25 02:05:29 +0000111 # These are used by CCompiler in two places: the constructor sets
112 # instance attributes 'preprocessor', 'compiler', etc. from them, and
113 # 'set_executable()' allows any of these to be set. The defaults here
114 # are pretty generic; they will probably have to be set by an outsider
115 # (eg. using information discovered by the sysconfig about building
116 # Python extensions).
117 executables = {'preprocessor' : None,
118 'compiler' : ["cc"],
119 'compiler_so' : ["cc"],
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000120 'compiler_cxx' : ["cc"],
Greg Ward73076ff2000-06-25 02:05:29 +0000121 'linker_so' : ["cc", "-shared"],
122 'linker_exe' : ["cc"],
123 'archiver' : ["ar", "-cr"],
124 'ranlib' : None,
125 }
126
Just van Rossum005dbb22002-02-11 15:31:50 +0000127 if sys.platform[:6] == "darwin":
128 executables['ranlib'] = ["ranlib"]
129
Greg Ward73076ff2000-06-25 02:05:29 +0000130 # Needed for the filename generation methods provided by the base
131 # class, CCompiler. NB. whoever instantiates/uses a particular
132 # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
133 # reasonable common default here, but it's not necessarily used on all
134 # Unices!
135
Andrew M. Kuchling7880e5e2001-04-05 15:46:48 +0000136 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +0000137 obj_extension = ".o"
138 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +0000139 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +0000140 dylib_lib_extension = ".dylib"
141 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Jason Tishlerd7e83a12003-04-18 17:27:47 +0000142 if sys.platform == "cygwin":
143 exe_extension = ".exe"
Greg Wardc9f31872000-01-09 22:47:53 +0000144
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000145 def preprocess(self, source,
146 output_file=None, macros=None, include_dirs=None,
147 extra_preargs=None, extra_postargs=None):
148 ignore, macros, include_dirs = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000149 self._fix_compile_args(None, macros, include_dirs)
150 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000151 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +0000152 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +0000153 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +0000154 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +0000155 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +0000156 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000157 pp_args.extend(extra_postargs)
Andrew M. Kuchlingdf453fd2002-09-09 12:16:58 +0000158 pp_args.append(source)
Greg Ward3ff3b032000-06-21 02:58:46 +0000159
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000160 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000161 # generating output to stdout, or there's a target output file and
162 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000163 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000164 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000165 if output_file:
166 self.mkpath(os.path.dirname(output_file))
167 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000168 self.spawn(pp_args)
Greg Ward3ff3b032000-06-21 02:58:46 +0000169 except DistutilsExecError, msg:
170 raise CompileError, msg
171
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000172 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000173 compiler_so = self.compiler_so
174 if sys.platform == 'darwin':
175 compiler_so = _darwin_compiler_fixup(compiler_so, cc_args + extra_postargs)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000176 try:
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000177 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000178 extra_postargs)
179 except DistutilsExecError, msg:
180 raise CompileError, msg
Greg Ward170bdc01999-07-10 02:04:22 +0000181
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000182 def create_static_lib(self, objects, output_libname,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000183 output_dir=None, debug=0, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000184 objects, output_dir = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000185
Greg Ward32c4a8a2000-03-06 03:40:29 +0000186 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000187 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000188
Greg Wardbe86bde2000-09-26 01:56:15 +0000189 if self._need_link(objects, output_filename):
190 self.mkpath(os.path.dirname(output_filename))
191 self.spawn(self.archiver +
192 [output_filename] +
193 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000194
Greg Ward8eef5832000-04-14 13:53:34 +0000195 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
196 # think the only major Unix that does. Maybe we need some
197 # platform intelligence here to skip ranlib if it's not
198 # needed -- or maybe Python's configure script took care of
199 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000200 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000201 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000202 self.spawn(self.ranlib + [output_filename])
Greg Wardd1517112000-05-30 01:56:44 +0000203 except DistutilsExecError, msg:
204 raise LibError, msg
Greg Wardc9f31872000-01-09 22:47:53 +0000205 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000206 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000207
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000208 def link(self, target_desc, objects,
209 output_filename, output_dir=None, libraries=None,
210 library_dirs=None, runtime_library_dirs=None,
211 export_symbols=None, debug=0, extra_preargs=None,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000212 extra_postargs=None, build_temp=None, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000213 objects, output_dir = self._fix_object_args(objects, output_dir)
214 libraries, library_dirs, runtime_library_dirs = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000215 self._fix_lib_args(libraries, library_dirs, runtime_library_dirs)
Greg Ward04d78321999-12-12 16:57:47 +0000216
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000217 lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs,
Greg Wardbe86bde2000-09-26 01:56:15 +0000218 libraries)
219 if type(output_dir) not in (StringType, NoneType):
Greg Ward10ca82b2000-02-10 02:51:32 +0000220 raise TypeError, "'output_dir' must be a string or None"
Greg Ward8037cb11999-09-13 03:12:53 +0000221 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000222 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000223
Greg Wardbe86bde2000-09-26 01:56:15 +0000224 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000225 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000226 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000227 if debug:
228 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000229 if extra_preargs:
230 ld_args[:0] = extra_preargs
231 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000232 ld_args.extend(extra_postargs)
233 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000234 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000235 if target_desc == CCompiler.EXECUTABLE:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000236 linker = self.linker_exe[:]
Greg Ward42406482000-09-27 02:08:14 +0000237 else:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000238 linker = self.linker_so[:]
239 if target_lang == "c++" and self.compiler_cxx:
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000240 # skip over environment variable settings if /usr/bin/env
241 # is used to set up the linker's environment.
242 # This is needed on OSX. Note: this assumes that the
Tim Peters211219a2006-05-23 21:54:23 +0000243 # normal and C++ compiler have the same environment
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000244 # settings.
245 i = 0
246 if os.path.basename(linker[0]) == "env":
247 i = 1
248 while '=' in linker[i]:
249 i = i + 1
250
251 linker[i] = self.compiler_cxx[i]
252
253 if sys.platform == 'darwin':
254 linker = _darwin_compiler_fixup(linker, ld_args)
255
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000256 self.spawn(linker + ld_args)
Greg Wardd1517112000-05-30 01:56:44 +0000257 except DistutilsExecError, msg:
258 raise LinkError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000259 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000260 log.debug("skipping %s (up-to-date)", output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000261
Greg Ward32c4a8a2000-03-06 03:40:29 +0000262 # -- Miscellaneous methods -----------------------------------------
263 # These are all used by the 'gen_lib_options() function, in
264 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000265
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000266 def library_dir_option(self, dir):
Greg Ward4fecfce1999-10-03 20:45:33 +0000267 return "-L" + dir
268
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000269 def _is_gcc(self, compiler_name):
270 return "gcc" in compiler_name or "g++" in compiler_name
271
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000272 def runtime_library_dir_option(self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000273 # XXX Hackish, at the very least. See Python bug #445902:
274 # http://sourceforge.net/tracker/index.php
275 # ?func=detail&aid=445902&group_id=5470&atid=105470
276 # Linkers on different platforms need different options to
277 # specify that directories need to be added to the list of
278 # directories searched for dependencies when a dynamic library
Tarek Ziadée2be83d2009-05-09 08:28:53 +0000279 # is sought. GCC on GNU systems (Linux, FreeBSD, ...) has to
280 # be told to pass the -R option through to the linker, whereas
281 # other compilers and gcc on other systems just know this.
Fred Draked15db5c2001-12-11 05:04:24 +0000282 # Other compilers may need something slightly different. At
283 # this time, there's no way to determine this information from
284 # the configuration data stored in the Python installation, so
285 # we use this hack.
Tarek Ziadé5633a802010-01-23 09:23:15 +0000286 _sysconfig = __import__('sysconfig')
287
288 compiler = os.path.basename(_sysconfig.get_config_var("CC"))
Skip Montanaro628e3bf2002-10-09 21:37:18 +0000289 if sys.platform[:6] == "darwin":
290 # MacOSX's linker doesn't understand the -R flag at all
291 return "-L" + dir
Jack Jansen19c0d942003-06-01 19:27:40 +0000292 elif sys.platform[:5] == "hp-ux":
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000293 if self._is_gcc(compiler):
Tarek Ziadébed26a32009-09-09 08:14:20 +0000294 return ["-Wl,+s", "-L" + dir]
295 return ["+s", "-L" + dir]
Martin v. Löwis061f1322004-08-29 16:40:55 +0000296 elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5":
297 return ["-rpath", dir]
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000298 elif self._is_gcc(compiler):
Tarek Ziadé439bf932009-06-20 13:57:20 +0000299 # gcc on non-GNU systems does not need -Wl, but can
300 # use it anyway. Since distutils has always passed in
301 # -Wl whenever gcc was used in the past it is probably
302 # safest to keep doing so.
Tarek Ziadé5633a802010-01-23 09:23:15 +0000303 if _sysconfig.get_config_var("GNULD") == "yes":
Tarek Ziadé439bf932009-06-20 13:57:20 +0000304 # GNU ld needs an extra option to get a RUNPATH
305 # instead of just an RPATH.
306 return "-Wl,--enable-new-dtags,-R" + dir
Tarek Ziadée2be83d2009-05-09 08:28:53 +0000307 else:
Tarek Ziadé439bf932009-06-20 13:57:20 +0000308 return "-Wl,-R" + dir
309 elif sys.platform[:3] == "aix":
310 return "-blibpath:" + dir
311 else:
312 # No idea how --enable-new-dtags would be passed on to
313 # ld if this system was using GNU ld. Don't know if a
314 # system like this even exists.
315 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000316
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000317 def library_option(self, lib):
Greg Ward4fecfce1999-10-03 20:45:33 +0000318 return "-l" + lib
319
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000320 def find_library_file(self, dirs, lib, debug=0):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000321 shared_f = self.library_filename(lib, lib_type='shared')
322 dylib_f = self.library_filename(lib, lib_type='dylib')
323 static_f = self.library_filename(lib, lib_type='static')
Tim Peters182b5ac2004-07-18 06:16:08 +0000324
Greg Ward4fecfce1999-10-03 20:45:33 +0000325 for dir in dirs:
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000326 shared = os.path.join(dir, shared_f)
327 dylib = os.path.join(dir, dylib_f)
328 static = os.path.join(dir, static_f)
Greg Ward4fecfce1999-10-03 20:45:33 +0000329 # We're second-guessing the linker here, with not much hard
330 # data to go on: GCC seems to prefer the shared library, so I'm
331 # assuming that *all* Unix C compilers do. And of course I'm
332 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000333 if os.path.exists(dylib):
334 return dylib
335 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000336 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000337 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000338 return static
Tim Peters182b5ac2004-07-18 06:16:08 +0000339
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000340 # Oops, didn't find it in *any* of 'dirs'
341 return None