blob: 2aa1cb1d27795bb8adc16e082556f5bce0bd716f [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
Ronald Oussoren593e4ca2010-06-03 09:47:21 +000018import os, sys, re
Jeremy Hylton022640d2002-06-13 15:01:38 +000019from types import StringType, NoneType
Jeremy Hylton022640d2002-06-13 15:01:38 +000020
Tarek Ziadédd7bef92010-03-05 00:16:02 +000021from distutils import sysconfig
Greg Ward3ff3b032000-06-21 02:58:46 +000022from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000023from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000024 CCompiler, gen_preprocess_options, gen_lib_options
25from distutils.errors import \
26 DistutilsExecError, CompileError, LibError, LinkError
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000027from distutils import log
Greg Ward170bdc01999-07-10 02:04:22 +000028
Ned Deily18fae3f2013-01-31 01:24:55 -080029if sys.platform == 'darwin':
30 import _osx_support
31
Greg Ward170bdc01999-07-10 02:04:22 +000032# 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 Oussorenb02daf72006-05-23 12:01:11 +000047
Jeremy Hylton022640d2002-06-13 15:01:38 +000048class UnixCCompiler(CCompiler):
Greg Ward170bdc01999-07-10 02:04:22 +000049
Greg Ward0e3530b1999-09-29 12:22:50 +000050 compiler_type = 'unix'
51
Greg Ward73076ff2000-06-25 02:05:29 +000052 # 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 Niemeyer6b016852002-11-05 16:12:02 +000061 'compiler_cxx' : ["cc"],
Greg Ward73076ff2000-06-25 02:05:29 +000062 'linker_so' : ["cc", "-shared"],
63 'linker_exe' : ["cc"],
64 'archiver' : ["ar", "-cr"],
65 'ranlib' : None,
66 }
67
Just van Rossum005dbb22002-02-11 15:31:50 +000068 if sys.platform[:6] == "darwin":
69 executables['ranlib'] = ["ranlib"]
70
Greg Ward73076ff2000-06-25 02:05:29 +000071 # 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. Kuchling7880e5e2001-04-05 15:46:48 +000077 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +000078 obj_extension = ".o"
79 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +000080 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +000081 dylib_lib_extension = ".dylib"
82 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Jason Tishlerd7e83a12003-04-18 17:27:47 +000083 if sys.platform == "cygwin":
84 exe_extension = ".exe"
Greg Wardc9f31872000-01-09 22:47:53 +000085
Jeremy Hylton129b17d2002-06-13 15:14:10 +000086 def preprocess(self, source,
87 output_file=None, macros=None, include_dirs=None,
88 extra_preargs=None, extra_postargs=None):
89 ignore, macros, include_dirs = \
Greg Wardbe86bde2000-09-26 01:56:15 +000090 self._fix_compile_args(None, macros, include_dirs)
91 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +000092 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +000093 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +000094 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +000095 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +000096 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +000097 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +000098 pp_args.extend(extra_postargs)
Andrew M. Kuchlingdf453fd2002-09-09 12:16:58 +000099 pp_args.append(source)
Greg Ward3ff3b032000-06-21 02:58:46 +0000100
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000101 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000102 # generating output to stdout, or there's a target output file and
103 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000104 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000105 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000106 if output_file:
107 self.mkpath(os.path.dirname(output_file))
108 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000109 self.spawn(pp_args)
Greg Ward3ff3b032000-06-21 02:58:46 +0000110 except DistutilsExecError, msg:
111 raise CompileError, msg
112
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000113 def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts):
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000114 compiler_so = self.compiler_so
115 if sys.platform == 'darwin':
Ned Deily18fae3f2013-01-31 01:24:55 -0800116 compiler_so = _osx_support.compiler_fixup(compiler_so,
117 cc_args + extra_postargs)
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000118 try:
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000119 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
Jeremy Hylton1b046e42002-06-18 18:48:55 +0000120 extra_postargs)
121 except DistutilsExecError, msg:
122 raise CompileError, msg
Greg Ward170bdc01999-07-10 02:04:22 +0000123
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000124 def create_static_lib(self, objects, output_libname,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000125 output_dir=None, debug=0, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000126 objects, output_dir = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000127
Greg Ward32c4a8a2000-03-06 03:40:29 +0000128 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000129 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000130
Greg Wardbe86bde2000-09-26 01:56:15 +0000131 if self._need_link(objects, output_filename):
132 self.mkpath(os.path.dirname(output_filename))
133 self.spawn(self.archiver +
134 [output_filename] +
135 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000136
Greg Ward8eef5832000-04-14 13:53:34 +0000137 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
138 # think the only major Unix that does. Maybe we need some
139 # platform intelligence here to skip ranlib if it's not
140 # needed -- or maybe Python's configure script took care of
141 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000142 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000143 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000144 self.spawn(self.ranlib + [output_filename])
Greg Wardd1517112000-05-30 01:56:44 +0000145 except DistutilsExecError, msg:
146 raise LibError, msg
Greg Wardc9f31872000-01-09 22:47:53 +0000147 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000148 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000149
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000150 def link(self, target_desc, objects,
151 output_filename, output_dir=None, libraries=None,
152 library_dirs=None, runtime_library_dirs=None,
153 export_symbols=None, debug=0, extra_preargs=None,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000154 extra_postargs=None, build_temp=None, target_lang=None):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000155 objects, output_dir = self._fix_object_args(objects, output_dir)
156 libraries, library_dirs, runtime_library_dirs = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000157 self._fix_lib_args(libraries, library_dirs, runtime_library_dirs)
Greg Ward04d78321999-12-12 16:57:47 +0000158
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000159 lib_opts = gen_lib_options(self, library_dirs, runtime_library_dirs,
Greg Wardbe86bde2000-09-26 01:56:15 +0000160 libraries)
161 if type(output_dir) not in (StringType, NoneType):
Greg Ward10ca82b2000-02-10 02:51:32 +0000162 raise TypeError, "'output_dir' must be a string or None"
Greg Ward8037cb11999-09-13 03:12:53 +0000163 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000164 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000165
Greg Wardbe86bde2000-09-26 01:56:15 +0000166 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000167 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000168 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000169 if debug:
170 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000171 if extra_preargs:
172 ld_args[:0] = extra_preargs
173 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000174 ld_args.extend(extra_postargs)
175 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000176 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000177 if target_desc == CCompiler.EXECUTABLE:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000178 linker = self.linker_exe[:]
Greg Ward42406482000-09-27 02:08:14 +0000179 else:
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000180 linker = self.linker_so[:]
181 if target_lang == "c++" and self.compiler_cxx:
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000182 # skip over environment variable settings if /usr/bin/env
183 # is used to set up the linker's environment.
184 # This is needed on OSX. Note: this assumes that the
Tim Peters211219a2006-05-23 21:54:23 +0000185 # normal and C++ compiler have the same environment
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000186 # settings.
187 i = 0
188 if os.path.basename(linker[0]) == "env":
189 i = 1
190 while '=' in linker[i]:
191 i = i + 1
192
193 linker[i] = self.compiler_cxx[i]
194
195 if sys.platform == 'darwin':
Ned Deily18fae3f2013-01-31 01:24:55 -0800196 linker = _osx_support.compiler_fixup(linker, ld_args)
Ronald Oussorenb02daf72006-05-23 12:01:11 +0000197
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000198 self.spawn(linker + ld_args)
Greg Wardd1517112000-05-30 01:56:44 +0000199 except DistutilsExecError, msg:
200 raise LinkError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000201 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000202 log.debug("skipping %s (up-to-date)", output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000203
Greg Ward32c4a8a2000-03-06 03:40:29 +0000204 # -- Miscellaneous methods -----------------------------------------
205 # These are all used by the 'gen_lib_options() function, in
206 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000207
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000208 def library_dir_option(self, dir):
Greg Ward4fecfce1999-10-03 20:45:33 +0000209 return "-L" + dir
210
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000211 def _is_gcc(self, compiler_name):
212 return "gcc" in compiler_name or "g++" in compiler_name
213
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000214 def runtime_library_dir_option(self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000215 # XXX Hackish, at the very least. See Python bug #445902:
216 # http://sourceforge.net/tracker/index.php
217 # ?func=detail&aid=445902&group_id=5470&atid=105470
218 # Linkers on different platforms need different options to
219 # specify that directories need to be added to the list of
220 # directories searched for dependencies when a dynamic library
Tarek Ziadédd7bef92010-03-05 00:16:02 +0000221 # is sought. GCC has to be told to pass the -R option through
222 # to the linker, whereas other compilers just know this.
Fred Draked15db5c2001-12-11 05:04:24 +0000223 # Other compilers may need something slightly different. At
224 # this time, there's no way to determine this information from
225 # the configuration data stored in the Python installation, so
226 # we use this hack.
Tarek Ziadédd7bef92010-03-05 00:16:02 +0000227 compiler = os.path.basename(sysconfig.get_config_var("CC"))
Skip Montanaro628e3bf2002-10-09 21:37:18 +0000228 if sys.platform[:6] == "darwin":
229 # MacOSX's linker doesn't understand the -R flag at all
230 return "-L" + dir
Jack Jansen19c0d942003-06-01 19:27:40 +0000231 elif sys.platform[:5] == "hp-ux":
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000232 if self._is_gcc(compiler):
Tarek Ziadébed26a32009-09-09 08:14:20 +0000233 return ["-Wl,+s", "-L" + dir]
234 return ["+s", "-L" + dir]
Martin v. Löwis061f1322004-08-29 16:40:55 +0000235 elif sys.platform[:7] == "irix646" or sys.platform[:6] == "osf1V5":
236 return ["-rpath", dir]
Tarek Ziadéc25417f2010-01-08 23:42:23 +0000237 elif self._is_gcc(compiler):
Tarek Ziadédd7bef92010-03-05 00:16:02 +0000238 return "-Wl,-R" + dir
Tarek Ziadé439bf932009-06-20 13:57:20 +0000239 else:
Tarek Ziadé439bf932009-06-20 13:57:20 +0000240 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000241
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000242 def library_option(self, lib):
Greg Ward4fecfce1999-10-03 20:45:33 +0000243 return "-l" + lib
244
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000245 def find_library_file(self, dirs, lib, debug=0):
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000246 shared_f = self.library_filename(lib, lib_type='shared')
247 dylib_f = self.library_filename(lib, lib_type='dylib')
248 static_f = self.library_filename(lib, lib_type='static')
Tim Peters182b5ac2004-07-18 06:16:08 +0000249
Ronald Oussoren593e4ca2010-06-03 09:47:21 +0000250 if sys.platform == 'darwin':
251 # On OSX users can specify an alternate SDK using
252 # '-isysroot', calculate the SDK root if it is specified
253 # (and use it further on)
254 cflags = sysconfig.get_config_var('CFLAGS')
255 m = re.search(r'-isysroot\s+(\S+)', cflags)
256 if m is None:
257 sysroot = '/'
258 else:
259 sysroot = m.group(1)
260
261
262
Greg Ward4fecfce1999-10-03 20:45:33 +0000263 for dir in dirs:
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000264 shared = os.path.join(dir, shared_f)
265 dylib = os.path.join(dir, dylib_f)
266 static = os.path.join(dir, static_f)
Ronald Oussoren593e4ca2010-06-03 09:47:21 +0000267
268 if sys.platform == 'darwin' and (
Ronald Oussorencd172132010-06-27 12:36:16 +0000269 dir.startswith('/System/') or (
270 dir.startswith('/usr/') and not dir.startswith('/usr/local/'))):
271
Ronald Oussoren593e4ca2010-06-03 09:47:21 +0000272 shared = os.path.join(sysroot, dir[1:], shared_f)
273 dylib = os.path.join(sysroot, dir[1:], dylib_f)
274 static = os.path.join(sysroot, dir[1:], static_f)
275
Greg Ward4fecfce1999-10-03 20:45:33 +0000276 # We're second-guessing the linker here, with not much hard
277 # data to go on: GCC seems to prefer the shared library, so I'm
278 # assuming that *all* Unix C compilers do. And of course I'm
279 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000280 if os.path.exists(dylib):
281 return dylib
282 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000283 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000284 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000285 return static
Tim Peters182b5ac2004-07-18 06:16:08 +0000286
Jeremy Hylton129b17d2002-06-13 15:14:10 +0000287 # Oops, didn't find it in *any* of 'dirs'
288 return None