blob: a4f0ac4d0490d791aa06d33eff6743f754dff0e5 [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
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 Ward3ff3b032000-06-21 02:58:46 +000023from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000024from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000025 CCompiler, gen_preprocess_options, gen_lib_options
26from distutils.errors import \
27 DistutilsExecError, CompileError, LibError, LinkError
Greg Ward170bdc01999-07-10 02:04:22 +000028
29# 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
44
45class UnixCCompiler (CCompiler):
46
Greg Ward0e3530b1999-09-29 12:22:50 +000047 compiler_type = 'unix'
48
Greg Ward73076ff2000-06-25 02:05:29 +000049 # These are used by CCompiler in two places: the constructor sets
50 # instance attributes 'preprocessor', 'compiler', etc. from them, and
51 # 'set_executable()' allows any of these to be set. The defaults here
52 # are pretty generic; they will probably have to be set by an outsider
53 # (eg. using information discovered by the sysconfig about building
54 # Python extensions).
55 executables = {'preprocessor' : None,
56 'compiler' : ["cc"],
57 'compiler_so' : ["cc"],
58 'linker_so' : ["cc", "-shared"],
59 'linker_exe' : ["cc"],
60 'archiver' : ["ar", "-cr"],
61 'ranlib' : None,
62 }
63
64 # Needed for the filename generation methods provided by the base
65 # class, CCompiler. NB. whoever instantiates/uses a particular
66 # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
67 # reasonable common default here, but it's not necessarily used on all
68 # Unices!
69
Andrew M. Kuchling7880e5e2001-04-05 15:46:48 +000070 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +000071 obj_extension = ".o"
72 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +000073 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +000074 dylib_lib_extension = ".dylib"
75 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Greg Wardc9f31872000-01-09 22:47:53 +000076
Greg Wardc9f31872000-01-09 22:47:53 +000077
Greg Wardbfc79d62000-06-28 01:29:09 +000078
Greg Ward5e717441999-08-14 23:53:53 +000079 def __init__ (self,
80 verbose=0,
Greg Ward4fecfce1999-10-03 20:45:33 +000081 dry_run=0,
82 force=0):
Greg Ward4fecfce1999-10-03 20:45:33 +000083 CCompiler.__init__ (self, verbose, dry_run, force)
Greg Ward170bdc01999-07-10 02:04:22 +000084
Greg Ward170bdc01999-07-10 02:04:22 +000085
Greg Ward3ff3b032000-06-21 02:58:46 +000086 def preprocess (self,
87 source,
88 output_file=None,
89 macros=None,
90 include_dirs=None,
91 extra_preargs=None,
92 extra_postargs=None):
93
94 (_, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +000095 self._fix_compile_args(None, macros, include_dirs)
96 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +000097 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +000098 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +000099 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +0000100 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +0000101 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +0000102 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000103 pp_args.extend(extra_postargs)
Greg Ward3ff3b032000-06-21 02:58:46 +0000104
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000105 # We need to preprocess: either we're being forced to, or we're
106 # generating output to stdout, or there's a target output file and
107 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000108 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000109 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000110 if output_file:
111 self.mkpath(os.path.dirname(output_file))
112 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000113 self.spawn(pp_args)
Greg Ward3ff3b032000-06-21 02:58:46 +0000114 except DistutilsExecError, msg:
115 raise CompileError, msg
116
117
Greg Ward170bdc01999-07-10 02:04:22 +0000118 def compile (self,
119 sources,
Greg Ward8037cb11999-09-13 03:12:53 +0000120 output_dir=None,
Greg Ward5e717441999-08-14 23:53:53 +0000121 macros=None,
Greg Ward04d78321999-12-12 16:57:47 +0000122 include_dirs=None,
Greg Wardba233fb2000-02-09 02:17:00 +0000123 debug=0,
Greg Ward0e3530b1999-09-29 12:22:50 +0000124 extra_preargs=None,
125 extra_postargs=None):
Greg Ward5e717441999-08-14 23:53:53 +0000126
Greg Ward32c4a8a2000-03-06 03:40:29 +0000127 (output_dir, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000128 self._fix_compile_args(output_dir, macros, include_dirs)
129 (objects, skip_sources) = self._prep_compile(sources, output_dir)
Greg Ward170bdc01999-07-10 02:04:22 +0000130
Greg Ward32c4a8a2000-03-06 03:40:29 +0000131 # Figure out the options for the compiler command line.
Greg Wardbe86bde2000-09-26 01:56:15 +0000132 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000133 cc_args = pp_opts + ['-c']
Greg Wardba233fb2000-02-09 02:17:00 +0000134 if debug:
135 cc_args[:0] = ['-g']
Greg Wardef6f5152000-02-03 23:07:19 +0000136 if extra_preargs:
137 cc_args[:0] = extra_preargs
138 if extra_postargs is None:
139 extra_postargs = []
Greg Ward8037cb11999-09-13 03:12:53 +0000140
Greg Ward32c4a8a2000-03-06 03:40:29 +0000141 # Compile all source files that weren't eliminated by
142 # '_prep_compile()'.
Greg Wardbe86bde2000-09-26 01:56:15 +0000143 for i in range(len(sources)):
Greg Ward32c4a8a2000-03-06 03:40:29 +0000144 src = sources[i] ; obj = objects[i]
145 if skip_sources[src]:
Greg Wardbe86bde2000-09-26 01:56:15 +0000146 self.announce("skipping %s (%s up-to-date)" % (src, obj))
Greg Ward32c4a8a2000-03-06 03:40:29 +0000147 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000148 self.mkpath(os.path.dirname(obj))
Greg Wardd1517112000-05-30 01:56:44 +0000149 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000150 self.spawn(self.compiler_so + cc_args +
151 [src, '-o', obj] +
152 extra_postargs)
Greg Wardd1517112000-05-30 01:56:44 +0000153 except DistutilsExecError, msg:
154 raise CompileError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000155
Greg Ward32c4a8a2000-03-06 03:40:29 +0000156 # Return *all* object filenames, not just the ones we just built.
157 return objects
Greg Ward170bdc01999-07-10 02:04:22 +0000158
Greg Ward32c4a8a2000-03-06 03:40:29 +0000159 # compile ()
160
Greg Wardc9f31872000-01-09 22:47:53 +0000161
Greg Ward036c8052000-03-10 01:48:32 +0000162 def create_static_lib (self,
163 objects,
164 output_libname,
165 output_dir=None,
166 debug=0):
Greg Wardc9f31872000-01-09 22:47:53 +0000167
Greg Wardbe86bde2000-09-26 01:56:15 +0000168 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000169
Greg Ward32c4a8a2000-03-06 03:40:29 +0000170 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000171 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000172
Greg Wardbe86bde2000-09-26 01:56:15 +0000173 if self._need_link(objects, output_filename):
174 self.mkpath(os.path.dirname(output_filename))
175 self.spawn(self.archiver +
176 [output_filename] +
177 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000178
Greg Ward8eef5832000-04-14 13:53:34 +0000179 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
180 # think the only major Unix that does. Maybe we need some
181 # platform intelligence here to skip ranlib if it's not
182 # needed -- or maybe Python's configure script took care of
183 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000184 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000185 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000186 self.spawn(self.ranlib + [output_filename])
Greg Wardd1517112000-05-30 01:56:44 +0000187 except DistutilsExecError, msg:
188 raise LibError, msg
Greg Wardc9f31872000-01-09 22:47:53 +0000189 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000190 self.announce("skipping %s (up-to-date)" % output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000191
Greg Ward036c8052000-03-10 01:48:32 +0000192 # create_static_lib ()
Greg Wardc9f31872000-01-09 22:47:53 +0000193
Greg Ward170bdc01999-07-10 02:04:22 +0000194
Greg Ward42406482000-09-27 02:08:14 +0000195 def link (self,
196 target_desc,
197 objects,
198 output_filename,
199 output_dir=None,
200 libraries=None,
201 library_dirs=None,
202 runtime_library_dirs=None,
203 export_symbols=None,
204 debug=0,
205 extra_preargs=None,
206 extra_postargs=None,
207 build_temp=None):
Greg Ward5e717441999-08-14 23:53:53 +0000208
Greg Wardbe86bde2000-09-26 01:56:15 +0000209 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Warde21dabe2000-03-26 21:40:19 +0000210 (libraries, library_dirs, runtime_library_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000211 self._fix_lib_args(libraries, library_dirs, runtime_library_dirs)
Greg Ward04d78321999-12-12 16:57:47 +0000212
Greg Wardbe86bde2000-09-26 01:56:15 +0000213 lib_opts = gen_lib_options(self,
214 library_dirs, runtime_library_dirs,
215 libraries)
216 if type(output_dir) not in (StringType, NoneType):
Greg Ward10ca82b2000-02-10 02:51:32 +0000217 raise TypeError, "'output_dir' must be a string or None"
Greg Ward8037cb11999-09-13 03:12:53 +0000218 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000219 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000220
Greg Wardbe86bde2000-09-26 01:56:15 +0000221 if self._need_link(objects, output_filename):
Greg Ward73076ff2000-06-25 02:05:29 +0000222 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000223 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000224 if debug:
225 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000226 if extra_preargs:
227 ld_args[:0] = extra_preargs
228 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000229 ld_args.extend(extra_postargs)
230 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000231 try:
Greg Ward42406482000-09-27 02:08:14 +0000232 if target_desc == CCompiler.EXECUTABLE:
233 self.spawn(self.linker_exe + ld_args)
234 else:
235 self.spawn(self.linker_so + ld_args)
Greg Wardd1517112000-05-30 01:56:44 +0000236 except DistutilsExecError, msg:
237 raise LinkError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000238 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000239 self.announce("skipping %s (up-to-date)" % output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000240
Greg Ward42406482000-09-27 02:08:14 +0000241 # link ()
Greg Wardc9f31872000-01-09 22:47:53 +0000242
243
Greg Ward32c4a8a2000-03-06 03:40:29 +0000244 # -- Miscellaneous methods -----------------------------------------
245 # These are all used by the 'gen_lib_options() function, in
246 # ccompiler.py.
247
Greg Ward4fecfce1999-10-03 20:45:33 +0000248 def library_dir_option (self, dir):
249 return "-L" + dir
250
Greg Wardd03f88a2000-03-18 15:19:51 +0000251 def runtime_library_dir_option (self, dir):
252 return "-R" + dir
253
Greg Ward4fecfce1999-10-03 20:45:33 +0000254 def library_option (self, lib):
255 return "-l" + lib
256
257
Greg Warde5e60152000-08-04 01:28:39 +0000258 def find_library_file (self, dirs, lib, debug=0):
Greg Ward4fecfce1999-10-03 20:45:33 +0000259
260 for dir in dirs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000261 shared = os.path.join(
262 dir, self.library_filename(lib, lib_type='shared'))
Jack Jansene259e592001-08-27 15:08:16 +0000263 dylib = os.path.join(
264 dir, self.library_filename(lib, lib_type='dylib'))
Greg Wardbe86bde2000-09-26 01:56:15 +0000265 static = os.path.join(
266 dir, self.library_filename(lib, lib_type='static'))
Greg Ward4fecfce1999-10-03 20:45:33 +0000267
268 # We're second-guessing the linker here, with not much hard
269 # data to go on: GCC seems to prefer the shared library, so I'm
270 # assuming that *all* Unix C compilers do. And of course I'm
271 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000272 if os.path.exists(dylib):
273 return dylib
274 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000275 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000276 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000277 return static
278
279 else:
280 # Oops, didn't find it in *any* of 'dirs'
281 return None
282
283 # find_library_file ()
Greg Ward65f4a3b1999-08-29 18:23:32 +0000284
Greg Ward170bdc01999-07-10 02:04:22 +0000285# class UnixCCompiler