blob: 9ace98606c3964102d3b68ccfaad2854aa97e47e [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
18__rcsid__ = "$Id$"
19
Greg Ward8037cb11999-09-13 03:12:53 +000020import string, re, os
Greg Ward170bdc01999-07-10 02:04:22 +000021from types import *
Greg Ward8037cb11999-09-13 03:12:53 +000022from copy import copy
Greg Ward170bdc01999-07-10 02:04:22 +000023from sysconfig import \
24 CC, CCSHARED, CFLAGS, OPT, LDSHARED, LDFLAGS, RANLIB, AR, SO
Greg Wardc2941131999-09-08 02:32:19 +000025from ccompiler import CCompiler, gen_preprocess_options, gen_lib_options
Greg Ward8037cb11999-09-13 03:12:53 +000026from util import move_file, newer_pairwise, newer_group
Greg Ward170bdc01999-07-10 02:04:22 +000027
28# XXX Things not currently handled:
29# * optimization/debug/warning flags; we just use whatever's in Python's
30# Makefile and live with it. Is this adequate? If not, we might
31# have to have a bunch of subclasses GNUCCompiler, SGICCompiler,
32# SunCCompiler, and I suspect down that road lies madness.
33# * even if we don't know a warning flag from an optimization flag,
34# we need some way for outsiders to feed preprocessor/compiler/linker
35# flags in to us -- eg. a sysadmin might want to mandate certain flags
36# via a site config file, or a user might want to set something for
37# compiling this module distribution only via the setup.py command
38# line, whatever. As long as these options come from something on the
39# current system, they can be as system-dependent as they like, and we
40# should just happily stuff them into the preprocessor/compiler/linker
41# options and carry on.
42
43
44class UnixCCompiler (CCompiler):
45
Greg Ward5e717441999-08-14 23:53:53 +000046 # XXX perhaps there should really be *three* kinds of include
47 # directories: those built in to the preprocessor, those from Python's
48 # Makefiles, and those supplied to {add,set}_include_dirs(). Currently
49 # we make no distinction between the latter two at this point; it's all
50 # up to the client class to select the include directories to use above
51 # and beyond the compiler's defaults. That is, both the Python include
52 # directories and any module- or package-specific include directories
53 # are specified via {add,set}_include_dirs(), and there's no way to
54 # distinguish them. This might be a bug.
Greg Ward65f4a3b1999-08-29 18:23:32 +000055
Greg Ward0e3530b1999-09-29 12:22:50 +000056 compiler_type = 'unix'
57
Greg Ward65f4a3b1999-08-29 18:23:32 +000058 _obj_ext = '.o'
59 _exe_ext = ''
60 _shared_lib_ext = SO
61 _static_lib_ext = '.a'
Greg Wardc9f31872000-01-09 22:47:53 +000062
63 # Command to create a static library: seems to be pretty consistent
64 # across the major Unices. Might have to move down into the
65 # constructor if we need platform-specific guesswork.
66 archiver = "ar"
67 archiver_options = "-cr"
68
69
Greg Ward5e717441999-08-14 23:53:53 +000070 def __init__ (self,
71 verbose=0,
Greg Ward4fecfce1999-10-03 20:45:33 +000072 dry_run=0,
73 force=0):
Greg Ward170bdc01999-07-10 02:04:22 +000074
Greg Ward4fecfce1999-10-03 20:45:33 +000075 CCompiler.__init__ (self, verbose, dry_run, force)
Greg Ward170bdc01999-07-10 02:04:22 +000076
77 self.preprocess_options = None
78 self.compile_options = None
79
Greg Ward5e717441999-08-14 23:53:53 +000080 # Munge CC and OPT together in case there are flags stuck in CC.
81 # Note that using these variables from sysconfig immediately makes
82 # this module specific to building Python extensions and
83 # inappropriate as a general-purpose C compiler front-end. So sue
84 # me. Note also that we use OPT rather than CFLAGS, because CFLAGS
85 # is the flags used to compile Python itself -- not only are there
86 # -I options in there, they are the *wrong* -I options. We'll
87 # leave selection of include directories up to the class using
88 # UnixCCompiler!
89
Greg Ward170bdc01999-07-10 02:04:22 +000090 (self.cc, self.ccflags) = \
91 _split_command (CC + ' ' + OPT)
92 self.ccflags_shared = string.split (CCSHARED)
93
94 (self.ld_shared, self.ldflags_shared) = \
95 _split_command (LDSHARED)
96
Greg Wardc9f31872000-01-09 22:47:53 +000097 self.ld_exec = self.cc
98
Greg Ward170bdc01999-07-10 02:04:22 +000099
100 def compile (self,
101 sources,
Greg Ward8037cb11999-09-13 03:12:53 +0000102 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +0000103 macros=None,
Greg Ward04d78321999-12-12 16:57:47 +0000104 include_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +0000105 extra_preargs=None,
106 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +0000107
Greg Ward8037cb11999-09-13 03:12:53 +0000108 if output_dir is None:
109 output_dir = self.output_dir
Greg Ward5e717441999-08-14 23:53:53 +0000110 if macros is None:
111 macros = []
Greg Ward04d78321999-12-12 16:57:47 +0000112 if include_dirs is None:
113 include_dirs = []
Greg Ward170bdc01999-07-10 02:04:22 +0000114
115 if type (macros) is not ListType:
116 raise TypeError, \
117 "'macros' (if supplied) must be a list of tuples"
Greg Ward04d78321999-12-12 16:57:47 +0000118 if type (include_dirs) not in (ListType, TupleType):
Greg Ward170bdc01999-07-10 02:04:22 +0000119 raise TypeError, \
Greg Ward04d78321999-12-12 16:57:47 +0000120 "'include_dirs' (if supplied) must be a list of strings"
121 include_dirs = list (include_dirs)
Greg Ward170bdc01999-07-10 02:04:22 +0000122
Greg Wardc2941131999-09-08 02:32:19 +0000123 pp_opts = gen_preprocess_options (self.macros + macros,
Greg Ward04d78321999-12-12 16:57:47 +0000124 self.include_dirs + include_dirs)
Greg Ward170bdc01999-07-10 02:04:22 +0000125
Greg Ward8037cb11999-09-13 03:12:53 +0000126 # So we can mangle 'sources' without hurting the caller's data
127 orig_sources = sources
128 sources = copy (sources)
Greg Ward170bdc01999-07-10 02:04:22 +0000129
Greg Ward8037cb11999-09-13 03:12:53 +0000130 # Get the list of expected output (object) files and drop files we
131 # don't have to recompile. (Simplistic check -- we just compare the
132 # source and object file, no deep dependency checking involving
133 # header files. Hmmm.)
Greg Wardc9f31872000-01-09 22:47:53 +0000134 objects = self.object_filenames (sources, output_dir=output_dir)
Greg Ward4fecfce1999-10-03 20:45:33 +0000135 if not self.force:
136 skipped = newer_pairwise (sources, objects)
137 for skipped_pair in skipped:
138 self.announce ("skipping %s (%s up-to-date)" % skipped_pair)
Greg Ward8037cb11999-09-13 03:12:53 +0000139
Greg Wardef6f5152000-02-03 23:07:19 +0000140 # Build list of (source,object) tuples for convenience
141 srcobj = []
142 for i in range (len (sources)):
143 srcobj.append ((sources[i], objects[i]))
Greg Ward8037cb11999-09-13 03:12:53 +0000144
Greg Wardef6f5152000-02-03 23:07:19 +0000145 # Compile all source files that weren't eliminated by
146 # 'newer_pairwise()'.
147 # XXX use of ccflags_shared means we're blithely assuming
148 # that we're compiling for inclusion in a shared object!
149 # (will have to fix this when I add the ability to build a
150 # new Python)
151 cc_args = ['-c'] + pp_opts + self.ccflags + self.ccflags_shared
152 if extra_preargs:
153 cc_args[:0] = extra_preargs
154 if extra_postargs is None:
155 extra_postargs = []
Greg Ward8037cb11999-09-13 03:12:53 +0000156
Greg Wardef6f5152000-02-03 23:07:19 +0000157 for (source,object) in srcobj:
158 self.spawn ([self.cc] + cc_args +
159 [source, '-o', object] +
160 extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000161
162 # Have to re-fetch list of object filenames, because we want to
163 # return *all* of them, including those that weren't recompiled on
164 # this call!
165 return self.object_filenames (orig_sources, output_dir)
Greg Ward170bdc01999-07-10 02:04:22 +0000166
Greg Wardc9f31872000-01-09 22:47:53 +0000167
168 def _fix_link_args (self, output_dir, libraries, library_dirs):
169 """Fixes up the arguments supplied to the 'link_*' methods:
170 if output_dir is None, use self.output_dir; ensure that
171 libraries and library_dirs are both lists (could be None or
172 tuples on input -- both are converted to lists). Return
173 a tuple of the three input arguments."""
174
175 if output_dir is None:
176 output_dir = self.output_dir
177 if libraries is None:
178 libraries = []
179 if library_dirs is None:
180 library_dirs = []
181
182 if type (libraries) not in (ListType, TupleType):
183 raise TypeError, \
184 "'libraries' (if supplied) must be a list of strings"
185 if type (library_dirs) not in (ListType, TupleType):
186 raise TypeError, \
187 "'library_dirs' (if supplied) must be a list of strings"
188 libraries = list (libraries)
189 library_dirs = list (library_dirs)
190
191 return (output_dir, libraries, library_dirs)
192
193
194 def link_static_lib (self,
195 objects,
196 output_libname,
197 output_dir=None):
198
199 if type (objects) not in (ListType, TupleType):
200 raise TypeError, \
201 "'objects' must be a list or tuple of strings"
202 objects = list (objects)
203
204 if output_dir is None:
205 output_dir = self.output_dir
206
207 output_filename = self.library_filename (output_libname)
208 if output_dir is not None:
209 output_filename = os.path.join (output_dir, output_filename)
210
211 # Check timestamps: if any of the object files are newer than
212 # the library file, *or* if "force" is true, then we'll
213 # recreate the library.
214 if not self.force:
215 if self.dry_run:
216 newer = newer_group (objects, output_filename, missing='newer')
217 else:
218 newer = newer_group (objects, output_filename)
219
220 if self.force or newer:
221 self.spawn ([self.archiver,
222 self.archiver_options,
223 output_filename] +
224 objects)
225 else:
226 self.announce ("skipping %s (up-to-date)" % output_filename)
227
228 # link_static_lib ()
229
Greg Ward170bdc01999-07-10 02:04:22 +0000230
231 def link_shared_lib (self,
232 objects,
233 output_libname,
Greg Ward8037cb11999-09-13 03:12:53 +0000234 output_dir=None,
Greg Ward170bdc01999-07-10 02:04:22 +0000235 libraries=None,
Greg Ward65f4a3b1999-08-29 18:23:32 +0000236 library_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +0000237 extra_preargs=None,
238 extra_postargs=None):
Greg Ward170bdc01999-07-10 02:04:22 +0000239 # XXX should we sanity check the library name? (eg. no
240 # slashes)
Greg Ward8037cb11999-09-13 03:12:53 +0000241 self.link_shared_object (
242 objects,
243 "lib%s%s" % (output_libname, self._shared_lib_ext),
244 output_dir,
245 libraries,
246 library_dirs,
Greg Ward0e3530b1999-09-29 12:22:50 +0000247 extra_preargs,
248 extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000249
Greg Ward170bdc01999-07-10 02:04:22 +0000250
251 def link_shared_object (self,
252 objects,
253 output_filename,
Greg Ward8037cb11999-09-13 03:12:53 +0000254 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +0000255 libraries=None,
Greg Ward65f4a3b1999-08-29 18:23:32 +0000256 library_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +0000257 extra_preargs=None,
258 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +0000259
Greg Wardc9f31872000-01-09 22:47:53 +0000260 (output_dir, libraries, library_dirs) = \
261 self._fix_link_args (output_dir, libraries, library_dirs)
Greg Ward04d78321999-12-12 16:57:47 +0000262
Greg Ward4fecfce1999-10-03 20:45:33 +0000263 lib_opts = gen_lib_options (self,
264 self.library_dirs + library_dirs,
265 self.libraries + libraries)
Greg Ward8037cb11999-09-13 03:12:53 +0000266 if output_dir is not None:
267 output_filename = os.path.join (output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000268
Greg Ward8037cb11999-09-13 03:12:53 +0000269 # If any of the input object files are newer than the output shared
270 # object, relink. Again, this is a simplistic dependency check:
271 # doesn't look at any of the libraries we might be linking with.
Greg Wardc9f31872000-01-09 22:47:53 +0000272
Greg Ward4fecfce1999-10-03 20:45:33 +0000273 if not self.force:
Greg Wardc9f31872000-01-09 22:47:53 +0000274 if self.dry_run:
275 newer = newer_group (objects, output_filename, missing='newer')
276 else:
Greg Ward4fecfce1999-10-03 20:45:33 +0000277 newer = newer_group (objects, output_filename)
Greg Wardb116e451999-09-21 18:36:15 +0000278
Greg Ward4fecfce1999-10-03 20:45:33 +0000279 if self.force or newer:
280 ld_args = self.ldflags_shared + objects + \
281 lib_opts + ['-o', output_filename]
Greg Ward0e3530b1999-09-29 12:22:50 +0000282 if extra_preargs:
283 ld_args[:0] = extra_preargs
284 if extra_postargs:
285 ld_args.extend (extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000286 self.spawn ([self.ld_shared] + ld_args)
287 else:
288 self.announce ("skipping %s (up-to-date)" % output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000289
Greg Ward4fecfce1999-10-03 20:45:33 +0000290 # link_shared_object ()
291
292
Greg Wardc9f31872000-01-09 22:47:53 +0000293 def link_executable (self,
294 objects,
295 output_progname,
296 output_dir=None,
297 libraries=None,
298 library_dirs=None,
299 extra_preargs=None,
300 extra_postargs=None):
301
302 (output_dir, libraries, library_dirs) = \
303 self._fix_link_args (output_dir, libraries, library_dirs)
304
305 lib_opts = gen_lib_options (self,
306 self.library_dirs + library_dirs,
307 self.libraries + libraries)
308 output_filename = output_progname # Unix-ism!
309 if output_dir is not None:
310 output_filename = os.path.join (output_dir, output_filename)
311
312 # Same ol' simplistic-but-still-useful dependency check.
313 if not self.force:
314 if self.dry_run:
315 newer = newer_group (objects, output_filename, missing='newer')
316 else:
317 newer = newer_group (objects, output_filename)
318
319 if self.force or newer:
320 ld_args = objects + lib_opts + ['-o', output_filename]
321 if extra_preargs:
322 ld_args[:0] = extra_preargs
323 if extra_postargs:
324 ld_args.extend (extra_postargs)
325 self.spawn ([self.ld_exec] + ld_args)
326 else:
327 self.announce ("skipping %s (up-to-date)" % output_filename)
328
329 # link_executable ()
330
331
Greg Ward4fecfce1999-10-03 20:45:33 +0000332 # -- Filename-mangling (etc.) methods ------------------------------
Greg Ward5e717441999-08-14 23:53:53 +0000333
Greg Wardc9f31872000-01-09 22:47:53 +0000334 def object_filenames (self, source_filenames,
335 keep_dir=0, output_dir=None):
Greg Ward5e717441999-08-14 23:53:53 +0000336 outnames = []
337 for inname in source_filenames:
Greg Ward8037cb11999-09-13 03:12:53 +0000338 outname = re.sub (r'\.(c|C|cc|cxx|cpp)$', self._obj_ext, inname)
Greg Wardc9f31872000-01-09 22:47:53 +0000339 if not keep_dir:
340 outname = os.path.basename (outname)
Greg Ward8037cb11999-09-13 03:12:53 +0000341 if output_dir is not None:
342 outname = os.path.join (output_dir, outname)
343 outnames.append (outname)
Greg Ward5e717441999-08-14 23:53:53 +0000344 return outnames
345
Greg Wardc9f31872000-01-09 22:47:53 +0000346 def shared_object_filename (self, source_filename,
347 keep_dir=0, output_dir=None):
Greg Ward8037cb11999-09-13 03:12:53 +0000348 outname = re.sub (r'\.(c|C|cc|cxx|cpp)$', self._shared_lib_ext)
Greg Wardc9f31872000-01-09 22:47:53 +0000349 if not keep_dir:
350 outname = os.path.basename (outname)
Greg Ward8037cb11999-09-13 03:12:53 +0000351 if output_dir is not None:
352 outname = os.path.join (output_dir, outname)
353 return outname
Greg Ward5e717441999-08-14 23:53:53 +0000354
Greg Ward4fecfce1999-10-03 20:45:33 +0000355
Greg Ward5e717441999-08-14 23:53:53 +0000356 def library_filename (self, libname):
Greg Wardc9f31872000-01-09 22:47:53 +0000357 (dirname, basename) = os.path.split (libname)
358 return os.path.join (dirname,
359 "lib%s%s" % (basename, self._static_lib_ext))
Greg Ward5e717441999-08-14 23:53:53 +0000360
361 def shared_library_filename (self, libname):
Greg Wardc9f31872000-01-09 22:47:53 +0000362 (dirname, basename) = os.path.split (libname)
363 return os.path.join (dirname,
364 "lib%s%s" % (basename, self._shared_lib_ext))
Greg Ward4fecfce1999-10-03 20:45:33 +0000365
366
367 def library_dir_option (self, dir):
368 return "-L" + dir
369
370 def library_option (self, lib):
371 return "-l" + lib
372
373
374 def find_library_file (self, dirs, lib):
375
376 for dir in dirs:
377 shared = os.path.join (dir, self.shared_library_filename (lib))
378 static = os.path.join (dir, self.library_filename (lib))
379
380 # We're second-guessing the linker here, with not much hard
381 # data to go on: GCC seems to prefer the shared library, so I'm
382 # assuming that *all* Unix C compilers do. And of course I'm
383 # ignoring even GCC's "-static" option. So sue me.
384 if os.path.exists (shared):
385 return shared
386 elif os.path.exists (static):
387 return static
388
389 else:
390 # Oops, didn't find it in *any* of 'dirs'
391 return None
392
393 # find_library_file ()
Greg Ward65f4a3b1999-08-29 18:23:32 +0000394
Greg Ward170bdc01999-07-10 02:04:22 +0000395# class UnixCCompiler
396
397
398def _split_command (cmd):
399 """Split a command string up into the progam to run (a string) and
400 the list of arguments; return them as (cmd, arglist)."""
401 args = string.split (cmd)
402 return (args[0], args[1:])