blob: 7e63c56afe54375a74a1bdaa7f71bfa8ae5b099a [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
16# created 1999/07/05, Greg Ward
17
Greg Ward3ce77fd2000-03-02 01:49:45 +000018__revision__ = "$Id$"
Greg Ward170bdc01999-07-10 02:04:22 +000019
Just van Rossum005dbb22002-02-11 15:31:50 +000020import string, re, os, sys
Greg Ward170bdc01999-07-10 02:04:22 +000021from types import *
Greg Ward8037cb11999-09-13 03:12:53 +000022from copy import copy
Fred Draked15db5c2001-12-11 05:04:24 +000023from distutils import sysconfig
Greg Ward3ff3b032000-06-21 02:58:46 +000024from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000025from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000026 CCompiler, gen_preprocess_options, gen_lib_options
27from distutils.errors import \
28 DistutilsExecError, CompileError, LibError, LinkError
Greg Ward170bdc01999-07-10 02:04:22 +000029
30# XXX Things not currently handled:
31# * optimization/debug/warning flags; we just use whatever's in Python's
32# Makefile and live with it. Is this adequate? If not, we might
33# have to have a bunch of subclasses GNUCCompiler, SGICCompiler,
34# SunCCompiler, and I suspect down that road lies madness.
35# * even if we don't know a warning flag from an optimization flag,
36# we need some way for outsiders to feed preprocessor/compiler/linker
37# flags in to us -- eg. a sysadmin might want to mandate certain flags
38# via a site config file, or a user might want to set something for
39# compiling this module distribution only via the setup.py command
40# line, whatever. As long as these options come from something on the
41# current system, they can be as system-dependent as they like, and we
42# should just happily stuff them into the preprocessor/compiler/linker
43# options and carry on.
44
45
46class UnixCCompiler (CCompiler):
47
Greg Ward0e3530b1999-09-29 12:22:50 +000048 compiler_type = 'unix'
49
Greg Ward73076ff2000-06-25 02:05:29 +000050 # These are used by CCompiler in two places: the constructor sets
51 # instance attributes 'preprocessor', 'compiler', etc. from them, and
52 # 'set_executable()' allows any of these to be set. The defaults here
53 # are pretty generic; they will probably have to be set by an outsider
54 # (eg. using information discovered by the sysconfig about building
55 # Python extensions).
56 executables = {'preprocessor' : None,
57 'compiler' : ["cc"],
58 'compiler_so' : ["cc"],
59 '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"
79 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Greg Wardc9f31872000-01-09 22:47:53 +000080
Greg Wardc9f31872000-01-09 22:47:53 +000081
Greg Wardbfc79d62000-06-28 01:29:09 +000082
Greg Ward5e717441999-08-14 23:53:53 +000083 def __init__ (self,
84 verbose=0,
Greg Ward4fecfce1999-10-03 20:45:33 +000085 dry_run=0,
86 force=0):
Greg Ward4fecfce1999-10-03 20:45:33 +000087 CCompiler.__init__ (self, verbose, dry_run, force)
Greg Ward170bdc01999-07-10 02:04:22 +000088
Greg Ward170bdc01999-07-10 02:04:22 +000089
Greg Ward3ff3b032000-06-21 02:58:46 +000090 def preprocess (self,
91 source,
92 output_file=None,
93 macros=None,
94 include_dirs=None,
95 extra_preargs=None,
96 extra_postargs=None):
97
98 (_, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +000099 self._fix_compile_args(None, macros, include_dirs)
100 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000101 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +0000102 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +0000103 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +0000104 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +0000105 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +0000106 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000107 pp_args.extend(extra_postargs)
Greg Ward3ff3b032000-06-21 02:58:46 +0000108
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000109 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000110 # generating output to stdout, or there's a target output file and
111 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000112 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000113 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000114 if output_file:
115 self.mkpath(os.path.dirname(output_file))
116 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000117 self.spawn(pp_args)
Greg Ward3ff3b032000-06-21 02:58:46 +0000118 except DistutilsExecError, msg:
119 raise CompileError, msg
120
121
Greg Ward170bdc01999-07-10 02:04:22 +0000122 def compile (self,
123 sources,
Greg Ward8037cb11999-09-13 03:12:53 +0000124 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +0000125 macros=None,
Greg Ward04d78321999-12-12 16:57:47 +0000126 include_dirs=None,
Greg Wardba233fb2000-02-09 02:17:00 +0000127 debug=0,
Greg Ward0e3530b1999-09-29 12:22:50 +0000128 extra_preargs=None,
129 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +0000130
Greg Ward32c4a8a2000-03-06 03:40:29 +0000131 (output_dir, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000132 self._fix_compile_args(output_dir, macros, include_dirs)
133 (objects, skip_sources) = self._prep_compile(sources, output_dir)
Greg Ward170bdc01999-07-10 02:04:22 +0000134
Greg Ward32c4a8a2000-03-06 03:40:29 +0000135 # Figure out the options for the compiler command line.
Greg Wardbe86bde2000-09-26 01:56:15 +0000136 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000137 cc_args = pp_opts + ['-c']
Greg Wardba233fb2000-02-09 02:17:00 +0000138 if debug:
139 cc_args[:0] = ['-g']
Greg Wardef6f5152000-02-03 23:07:19 +0000140 if extra_preargs:
141 cc_args[:0] = extra_preargs
142 if extra_postargs is None:
143 extra_postargs = []
Greg Ward8037cb11999-09-13 03:12:53 +0000144
Greg Ward32c4a8a2000-03-06 03:40:29 +0000145 # Compile all source files that weren't eliminated by
Fred Drakeb94b8492001-12-06 20:51:35 +0000146 # '_prep_compile()'.
Greg Wardbe86bde2000-09-26 01:56:15 +0000147 for i in range(len(sources)):
Greg Ward32c4a8a2000-03-06 03:40:29 +0000148 src = sources[i] ; obj = objects[i]
149 if skip_sources[src]:
Greg Wardbe86bde2000-09-26 01:56:15 +0000150 self.announce("skipping %s (%s up-to-date)" % (src, obj))
Greg Ward32c4a8a2000-03-06 03:40:29 +0000151 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000152 self.mkpath(os.path.dirname(obj))
Greg Wardd1517112000-05-30 01:56:44 +0000153 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000154 self.spawn(self.compiler_so + cc_args +
155 [src, '-o', obj] +
156 extra_postargs)
Greg Wardd1517112000-05-30 01:56:44 +0000157 except DistutilsExecError, msg:
158 raise CompileError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000159
Greg Ward32c4a8a2000-03-06 03:40:29 +0000160 # Return *all* object filenames, not just the ones we just built.
161 return objects
Greg Ward170bdc01999-07-10 02:04:22 +0000162
Greg Ward32c4a8a2000-03-06 03:40:29 +0000163 # compile ()
Fred Drakeb94b8492001-12-06 20:51:35 +0000164
Greg Wardc9f31872000-01-09 22:47:53 +0000165
Greg Ward036c8052000-03-10 01:48:32 +0000166 def create_static_lib (self,
167 objects,
168 output_libname,
169 output_dir=None,
170 debug=0):
Greg Wardc9f31872000-01-09 22:47:53 +0000171
Greg Wardbe86bde2000-09-26 01:56:15 +0000172 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000173
Greg Ward32c4a8a2000-03-06 03:40:29 +0000174 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000175 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000176
Greg Wardbe86bde2000-09-26 01:56:15 +0000177 if self._need_link(objects, output_filename):
178 self.mkpath(os.path.dirname(output_filename))
179 self.spawn(self.archiver +
180 [output_filename] +
181 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000182
Greg Ward8eef5832000-04-14 13:53:34 +0000183 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
184 # think the only major Unix that does. Maybe we need some
185 # platform intelligence here to skip ranlib if it's not
186 # needed -- or maybe Python's configure script took care of
187 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000188 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000189 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000190 self.spawn(self.ranlib + [output_filename])
Greg Wardd1517112000-05-30 01:56:44 +0000191 except DistutilsExecError, msg:
192 raise LibError, msg
Greg Wardc9f31872000-01-09 22:47:53 +0000193 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000194 self.announce("skipping %s (up-to-date)" % output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000195
Greg Ward036c8052000-03-10 01:48:32 +0000196 # create_static_lib ()
Greg Wardc9f31872000-01-09 22:47:53 +0000197
Greg Ward170bdc01999-07-10 02:04:22 +0000198
Greg Ward42406482000-09-27 02:08:14 +0000199 def link (self,
Fred Drakeb94b8492001-12-06 20:51:35 +0000200 target_desc,
Greg Ward42406482000-09-27 02:08:14 +0000201 objects,
202 output_filename,
203 output_dir=None,
204 libraries=None,
205 library_dirs=None,
206 runtime_library_dirs=None,
207 export_symbols=None,
208 debug=0,
209 extra_preargs=None,
210 extra_postargs=None,
211 build_temp=None):
Greg Ward5e717441999-08-14 23:53:53 +0000212
Greg Wardbe86bde2000-09-26 01:56:15 +0000213 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Warde21dabe2000-03-26 21:40:19 +0000214 (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
Greg Wardbe86bde2000-09-26 01:56:15 +0000217 lib_opts = gen_lib_options(self,
218 library_dirs, runtime_library_dirs,
219 libraries)
220 if type(output_dir) not in (StringType, NoneType):
Greg Ward10ca82b2000-02-10 02:51:32 +0000221 raise TypeError, "'output_dir' must be a string or None"
Greg Ward8037cb11999-09-13 03:12:53 +0000222 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000223 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000224
Greg Wardbe86bde2000-09-26 01:56:15 +0000225 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000226 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000227 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000228 if debug:
229 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000230 if extra_preargs:
231 ld_args[:0] = extra_preargs
232 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000233 ld_args.extend(extra_postargs)
234 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000235 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000236 if target_desc == CCompiler.EXECUTABLE:
Greg Ward42406482000-09-27 02:08:14 +0000237 self.spawn(self.linker_exe + ld_args)
238 else:
239 self.spawn(self.linker_so + ld_args)
Greg Wardd1517112000-05-30 01:56:44 +0000240 except DistutilsExecError, msg:
241 raise LinkError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000242 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000243 self.announce("skipping %s (up-to-date)" % output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000244
Greg Ward42406482000-09-27 02:08:14 +0000245 # link ()
Greg Wardc9f31872000-01-09 22:47:53 +0000246
247
Greg Ward32c4a8a2000-03-06 03:40:29 +0000248 # -- Miscellaneous methods -----------------------------------------
249 # These are all used by the 'gen_lib_options() function, in
250 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000251
Greg Ward4fecfce1999-10-03 20:45:33 +0000252 def library_dir_option (self, dir):
253 return "-L" + dir
254
Greg Wardd03f88a2000-03-18 15:19:51 +0000255 def runtime_library_dir_option (self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000256 # XXX Hackish, at the very least. See Python bug #445902:
257 # http://sourceforge.net/tracker/index.php
258 # ?func=detail&aid=445902&group_id=5470&atid=105470
259 # Linkers on different platforms need different options to
260 # specify that directories need to be added to the list of
261 # directories searched for dependencies when a dynamic library
262 # is sought. GCC has to be told to pass the -R option through
263 # to the linker, whereas other compilers just know this.
264 # Other compilers may need something slightly different. At
265 # this time, there's no way to determine this information from
266 # the configuration data stored in the Python installation, so
267 # we use this hack.
268 compiler = os.path.basename(sysconfig.get_config_var("CC"))
269 if compiler == "gcc" or compiler == "g++":
270 return "-Wl,-R" + dir
271 else:
272 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000273
Greg Ward4fecfce1999-10-03 20:45:33 +0000274 def library_option (self, lib):
275 return "-l" + lib
276
277
Greg Warde5e60152000-08-04 01:28:39 +0000278 def find_library_file (self, dirs, lib, debug=0):
Greg Ward4fecfce1999-10-03 20:45:33 +0000279
280 for dir in dirs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000281 shared = os.path.join(
282 dir, self.library_filename(lib, lib_type='shared'))
Jack Jansene259e592001-08-27 15:08:16 +0000283 dylib = os.path.join(
284 dir, self.library_filename(lib, lib_type='dylib'))
Greg Wardbe86bde2000-09-26 01:56:15 +0000285 static = os.path.join(
286 dir, self.library_filename(lib, lib_type='static'))
Greg Ward4fecfce1999-10-03 20:45:33 +0000287
288 # We're second-guessing the linker here, with not much hard
289 # data to go on: GCC seems to prefer the shared library, so I'm
290 # assuming that *all* Unix C compilers do. And of course I'm
291 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000292 if os.path.exists(dylib):
293 return dylib
294 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000295 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000296 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000297 return static
298
299 else:
300 # Oops, didn't find it in *any* of 'dirs'
301 return None
302
303 # find_library_file ()
Greg Ward65f4a3b1999-08-29 18:23:32 +0000304
Greg Ward170bdc01999-07-10 02:04:22 +0000305# class UnixCCompiler