blob: edff4f0a0e2889d5510fd4209e980912668ae294 [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 Ward5e717441999-08-14 23:53:53 +000062
63 def __init__ (self,
64 verbose=0,
Greg Ward4fecfce1999-10-03 20:45:33 +000065 dry_run=0,
66 force=0):
Greg Ward170bdc01999-07-10 02:04:22 +000067
Greg Ward4fecfce1999-10-03 20:45:33 +000068 CCompiler.__init__ (self, verbose, dry_run, force)
Greg Ward170bdc01999-07-10 02:04:22 +000069
70 self.preprocess_options = None
71 self.compile_options = None
72
Greg Ward5e717441999-08-14 23:53:53 +000073 # Munge CC and OPT together in case there are flags stuck in CC.
74 # Note that using these variables from sysconfig immediately makes
75 # this module specific to building Python extensions and
76 # inappropriate as a general-purpose C compiler front-end. So sue
77 # me. Note also that we use OPT rather than CFLAGS, because CFLAGS
78 # is the flags used to compile Python itself -- not only are there
79 # -I options in there, they are the *wrong* -I options. We'll
80 # leave selection of include directories up to the class using
81 # UnixCCompiler!
82
Greg Ward170bdc01999-07-10 02:04:22 +000083 (self.cc, self.ccflags) = \
84 _split_command (CC + ' ' + OPT)
85 self.ccflags_shared = string.split (CCSHARED)
86
87 (self.ld_shared, self.ldflags_shared) = \
88 _split_command (LDSHARED)
89
90
91 def compile (self,
92 sources,
Greg Ward8037cb11999-09-13 03:12:53 +000093 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +000094 macros=None,
Greg Ward04d78321999-12-12 16:57:47 +000095 include_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +000096 extra_preargs=None,
97 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +000098
Greg Ward8037cb11999-09-13 03:12:53 +000099 if output_dir is None:
100 output_dir = self.output_dir
Greg Ward5e717441999-08-14 23:53:53 +0000101 if macros is None:
102 macros = []
Greg Ward04d78321999-12-12 16:57:47 +0000103 if include_dirs is None:
104 include_dirs = []
Greg Ward170bdc01999-07-10 02:04:22 +0000105
106 if type (macros) is not ListType:
107 raise TypeError, \
108 "'macros' (if supplied) must be a list of tuples"
Greg Ward04d78321999-12-12 16:57:47 +0000109 if type (include_dirs) not in (ListType, TupleType):
Greg Ward170bdc01999-07-10 02:04:22 +0000110 raise TypeError, \
Greg Ward04d78321999-12-12 16:57:47 +0000111 "'include_dirs' (if supplied) must be a list of strings"
112 include_dirs = list (include_dirs)
Greg Ward170bdc01999-07-10 02:04:22 +0000113
Greg Wardc2941131999-09-08 02:32:19 +0000114 pp_opts = gen_preprocess_options (self.macros + macros,
Greg Ward04d78321999-12-12 16:57:47 +0000115 self.include_dirs + include_dirs)
Greg Ward170bdc01999-07-10 02:04:22 +0000116
Greg Ward8037cb11999-09-13 03:12:53 +0000117 # So we can mangle 'sources' without hurting the caller's data
118 orig_sources = sources
119 sources = copy (sources)
Greg Ward170bdc01999-07-10 02:04:22 +0000120
Greg Ward8037cb11999-09-13 03:12:53 +0000121 # Get the list of expected output (object) files and drop files we
122 # don't have to recompile. (Simplistic check -- we just compare the
123 # source and object file, no deep dependency checking involving
124 # header files. Hmmm.)
125 objects = self.object_filenames (sources, output_dir)
Greg Ward4fecfce1999-10-03 20:45:33 +0000126 if not self.force:
127 skipped = newer_pairwise (sources, objects)
128 for skipped_pair in skipped:
129 self.announce ("skipping %s (%s up-to-date)" % skipped_pair)
Greg Ward8037cb11999-09-13 03:12:53 +0000130
131 # If anything left to compile, compile it
132 if sources:
133 # XXX use of ccflags_shared means we're blithely assuming
134 # that we're compiling for inclusion in a shared object!
135 # (will have to fix this when I add the ability to build a
136 # new Python)
137 cc_args = ['-c'] + pp_opts + \
138 self.ccflags + self.ccflags_shared + \
139 sources
Greg Ward0e3530b1999-09-29 12:22:50 +0000140 if extra_preargs:
141 cc_args[:0] = extra_preargs
142 if extra_postargs:
143 cc_args.extend (extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000144 self.spawn ([self.cc] + cc_args)
145
146
147 # Note that compiling multiple source files in the same go like
148 # we've just done drops the .o file in the current directory, which
149 # may not be what the caller wants (depending on the 'output_dir'
150 # parameter). So, if necessary, fix that now by moving the .o
151 # files into the desired output directory. (The alternative, of
152 # course, is to compile one-at-a-time with a -o option. 6 of one,
153 # 12/2 of the other...)
154
155 if output_dir:
156 for i in range (len (objects)):
157 src = os.path.basename (objects[i])
158 objects[i] = self.move_file (src, output_dir)
159
160 # Have to re-fetch list of object filenames, because we want to
161 # return *all* of them, including those that weren't recompiled on
162 # this call!
163 return self.object_filenames (orig_sources, output_dir)
Greg Wardc2941131999-09-08 02:32:19 +0000164
Greg Ward170bdc01999-07-10 02:04:22 +0000165
166 # XXX punting on 'link_static_lib()' for now -- it might be better for
167 # CCompiler to mandate just 'link_binary()' or some such to build a new
168 # Python binary; it would then take care of linking in everything
169 # needed for the new Python without messing with an intermediate static
170 # library.
171
172 def link_shared_lib (self,
173 objects,
174 output_libname,
Greg Ward8037cb11999-09-13 03:12:53 +0000175 output_dir=None,
Greg Ward170bdc01999-07-10 02:04:22 +0000176 libraries=None,
Greg Ward65f4a3b1999-08-29 18:23:32 +0000177 library_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +0000178 extra_preargs=None,
179 extra_postargs=None):
Greg Ward170bdc01999-07-10 02:04:22 +0000180 # XXX should we sanity check the library name? (eg. no
181 # slashes)
Greg Ward8037cb11999-09-13 03:12:53 +0000182 self.link_shared_object (
183 objects,
184 "lib%s%s" % (output_libname, self._shared_lib_ext),
185 output_dir,
186 libraries,
187 library_dirs,
Greg Ward0e3530b1999-09-29 12:22:50 +0000188 extra_preargs,
189 extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000190
Greg Ward170bdc01999-07-10 02:04:22 +0000191
192 def link_shared_object (self,
193 objects,
194 output_filename,
Greg Ward8037cb11999-09-13 03:12:53 +0000195 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +0000196 libraries=None,
Greg Ward65f4a3b1999-08-29 18:23:32 +0000197 library_dirs=None,
Greg Ward0e3530b1999-09-29 12:22:50 +0000198 extra_preargs=None,
199 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +0000200
Greg Ward8037cb11999-09-13 03:12:53 +0000201 if output_dir is None:
202 output_dir = self.output_dir
Greg Ward5e717441999-08-14 23:53:53 +0000203 if libraries is None:
204 libraries = []
205 if library_dirs is None:
206 library_dirs = []
Greg Ward65f4a3b1999-08-29 18:23:32 +0000207
Greg Ward04d78321999-12-12 16:57:47 +0000208 if type (libraries) not in (ListType, TupleType):
209 raise TypeError, \
210 "'libraries' (if supplied) must be a list of strings"
211 if type (library_dirs) not in (ListType, TupleType):
212 raise TypeError, \
213 "'library_dirs' (if supplied) must be a list of strings"
214 libraries = list (libraries)
215 library_dirs = list (library_dirs)
216
Greg Ward4fecfce1999-10-03 20:45:33 +0000217 lib_opts = gen_lib_options (self,
218 self.library_dirs + library_dirs,
219 self.libraries + libraries)
Greg Ward8037cb11999-09-13 03:12:53 +0000220 if output_dir is not None:
221 output_filename = os.path.join (output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000222
Greg Ward8037cb11999-09-13 03:12:53 +0000223 # If any of the input object files are newer than the output shared
224 # object, relink. Again, this is a simplistic dependency check:
225 # doesn't look at any of the libraries we might be linking with.
Greg Wardb116e451999-09-21 18:36:15 +0000226 # Note that we have to dance around errors comparing timestamps if
227 # we're in dry-run mode (yuck).
Greg Ward4fecfce1999-10-03 20:45:33 +0000228 if not self.force:
229 try:
230 newer = newer_group (objects, output_filename)
231 except OSError:
232 if self.dry_run:
233 newer = 1
234 else:
235 raise
Greg Wardb116e451999-09-21 18:36:15 +0000236
Greg Ward4fecfce1999-10-03 20:45:33 +0000237 if self.force or newer:
238 ld_args = self.ldflags_shared + objects + \
239 lib_opts + ['-o', output_filename]
Greg Ward0e3530b1999-09-29 12:22:50 +0000240 if extra_preargs:
241 ld_args[:0] = extra_preargs
242 if extra_postargs:
243 ld_args.extend (extra_postargs)
Greg Ward8037cb11999-09-13 03:12:53 +0000244 self.spawn ([self.ld_shared] + ld_args)
245 else:
246 self.announce ("skipping %s (up-to-date)" % output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000247
Greg Ward4fecfce1999-10-03 20:45:33 +0000248 # link_shared_object ()
249
250
251 # -- Filename-mangling (etc.) methods ------------------------------
Greg Ward5e717441999-08-14 23:53:53 +0000252
Greg Ward8037cb11999-09-13 03:12:53 +0000253 def object_filenames (self, source_filenames, output_dir=None):
Greg Ward5e717441999-08-14 23:53:53 +0000254 outnames = []
255 for inname in source_filenames:
Greg Ward8037cb11999-09-13 03:12:53 +0000256 outname = re.sub (r'\.(c|C|cc|cxx|cpp)$', self._obj_ext, inname)
257 outname = os.path.basename (outname)
258 if output_dir is not None:
259 outname = os.path.join (output_dir, outname)
260 outnames.append (outname)
Greg Ward5e717441999-08-14 23:53:53 +0000261 return outnames
262
Greg Ward8037cb11999-09-13 03:12:53 +0000263 def shared_object_filename (self, source_filename, output_dir=None):
264 outname = re.sub (r'\.(c|C|cc|cxx|cpp)$', self._shared_lib_ext)
265 outname = os.path.basename (outname)
266 if output_dir is not None:
267 outname = os.path.join (output_dir, outname)
268 return outname
Greg Ward5e717441999-08-14 23:53:53 +0000269
Greg Ward4fecfce1999-10-03 20:45:33 +0000270
Greg Ward5e717441999-08-14 23:53:53 +0000271 def library_filename (self, libname):
Greg Ward4fecfce1999-10-03 20:45:33 +0000272 return "lib%s%s" % (libname, self._static_lib_ext)
Greg Ward5e717441999-08-14 23:53:53 +0000273
274 def shared_library_filename (self, libname):
Greg Ward4fecfce1999-10-03 20:45:33 +0000275 return "lib%s%s" % (libname, self._shared_lib_ext)
276
277
278 def library_dir_option (self, dir):
279 return "-L" + dir
280
281 def library_option (self, lib):
282 return "-l" + lib
283
284
285 def find_library_file (self, dirs, lib):
286
287 for dir in dirs:
288 shared = os.path.join (dir, self.shared_library_filename (lib))
289 static = os.path.join (dir, self.library_filename (lib))
290
291 # We're second-guessing the linker here, with not much hard
292 # data to go on: GCC seems to prefer the shared library, so I'm
293 # assuming that *all* Unix C compilers do. And of course I'm
294 # ignoring even GCC's "-static" option. So sue me.
295 if os.path.exists (shared):
296 return shared
297 elif os.path.exists (static):
298 return static
299
300 else:
301 # Oops, didn't find it in *any* of 'dirs'
302 return None
303
304 # find_library_file ()
Greg Ward65f4a3b1999-08-29 18:23:32 +0000305
Greg Ward170bdc01999-07-10 02:04:22 +0000306# class UnixCCompiler
307
308
309def _split_command (cmd):
310 """Split a command string up into the progam to run (a string) and
311 the list of arguments; return them as (cmd, arglist)."""
312 args = string.split (cmd)
313 return (args[0], args[1:])