blob: 1cfeebd136c99444085d1e30f266a7deb9cf782b [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
Jeremy Hylton332a1462002-06-04 20:18:24 +000020import os, sys
Jeremy Hylton022640d2002-06-13 15:01:38 +000021from types import StringType, NoneType
Greg Ward8037cb11999-09-13 03:12:53 +000022from copy import copy
Jeremy Hylton022640d2002-06-13 15:01:38 +000023
Fred Draked15db5c2001-12-11 05:04:24 +000024from distutils import sysconfig
Greg Ward3ff3b032000-06-21 02:58:46 +000025from distutils.dep_util import newer
Greg Wardd1517112000-05-30 01:56:44 +000026from distutils.ccompiler import \
Greg Ward3add77f2000-05-30 02:02:49 +000027 CCompiler, gen_preprocess_options, gen_lib_options
28from distutils.errors import \
29 DistutilsExecError, CompileError, LibError, LinkError
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000030from distutils import log
Greg Ward170bdc01999-07-10 02:04:22 +000031
32# 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
Jeremy Hylton022640d2002-06-13 15:01:38 +000047class UnixCCompiler(CCompiler):
Greg Ward170bdc01999-07-10 02:04:22 +000048
Greg Ward0e3530b1999-09-29 12:22:50 +000049 compiler_type = 'unix'
50
Greg Ward73076ff2000-06-25 02:05:29 +000051 # These are used by CCompiler in two places: the constructor sets
52 # instance attributes 'preprocessor', 'compiler', etc. from them, and
53 # 'set_executable()' allows any of these to be set. The defaults here
54 # are pretty generic; they will probably have to be set by an outsider
55 # (eg. using information discovered by the sysconfig about building
56 # Python extensions).
57 executables = {'preprocessor' : None,
58 'compiler' : ["cc"],
59 'compiler_so' : ["cc"],
60 'linker_so' : ["cc", "-shared"],
61 'linker_exe' : ["cc"],
62 'archiver' : ["ar", "-cr"],
63 'ranlib' : None,
64 }
65
Just van Rossum005dbb22002-02-11 15:31:50 +000066 if sys.platform[:6] == "darwin":
67 executables['ranlib'] = ["ranlib"]
68
Greg Ward73076ff2000-06-25 02:05:29 +000069 # Needed for the filename generation methods provided by the base
70 # class, CCompiler. NB. whoever instantiates/uses a particular
71 # UnixCCompiler instance should set 'shared_lib_ext' -- we set a
72 # reasonable common default here, but it's not necessarily used on all
73 # Unices!
74
Andrew M. Kuchling7880e5e2001-04-05 15:46:48 +000075 src_extensions = [".c",".C",".cc",".cxx",".cpp",".m"]
Greg Ward32c4a8a2000-03-06 03:40:29 +000076 obj_extension = ".o"
77 static_lib_extension = ".a"
Greg Ward73076ff2000-06-25 02:05:29 +000078 shared_lib_extension = ".so"
Jack Jansene259e592001-08-27 15:08:16 +000079 dylib_lib_extension = ".dylib"
80 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s"
Greg Wardc9f31872000-01-09 22:47:53 +000081
Greg Wardc9f31872000-01-09 22:47:53 +000082
Greg Wardbfc79d62000-06-28 01:29:09 +000083
Jeremy Hylton28f46e12002-06-13 14:58:30 +000084 def __init__(self,
85 verbose=0,
86 dry_run=0,
87 force=0):
Jeremy Hylton022640d2002-06-13 15:01:38 +000088 CCompiler.__init__(self, verbose, dry_run, force)
Greg Ward170bdc01999-07-10 02:04:22 +000089
Jeremy Hylton28f46e12002-06-13 14:58:30 +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):
Greg Ward3ff3b032000-06-21 02:58:46 +000097 (_, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +000098 self._fix_compile_args(None, macros, include_dirs)
99 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000100 pp_args = self.preprocessor + pp_opts
Greg Ward3ff3b032000-06-21 02:58:46 +0000101 if output_file:
Greg Ward73076ff2000-06-25 02:05:29 +0000102 pp_args.extend(['-o', output_file])
Greg Ward3ff3b032000-06-21 02:58:46 +0000103 if extra_preargs:
Greg Ward73076ff2000-06-25 02:05:29 +0000104 pp_args[:0] = extra_preargs
Greg Ward3ff3b032000-06-21 02:58:46 +0000105 if extra_postargs:
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000106 pp_args.extend(extra_postargs)
Greg Ward3ff3b032000-06-21 02:58:46 +0000107
Andrew M. Kuchling286b1072001-07-16 14:19:20 +0000108 # We need to preprocess: either we're being forced to, or we're
Fred Drakeb94b8492001-12-06 20:51:35 +0000109 # generating output to stdout, or there's a target output file and
110 # the source file is newer than the target (or the target doesn't
Greg Ward3ff3b032000-06-21 02:58:46 +0000111 # exist).
Guido van Rossum63a47402001-07-16 14:46:13 +0000112 if self.force or output_file is None or newer(source, output_file):
Greg Ward3ff3b032000-06-21 02:58:46 +0000113 if output_file:
114 self.mkpath(os.path.dirname(output_file))
115 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000116 self.spawn(pp_args)
Greg Ward3ff3b032000-06-21 02:58:46 +0000117 except DistutilsExecError, msg:
118 raise CompileError, msg
119
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000120 def compile(self,
121 sources,
122 output_dir=None,
123 macros=None,
124 include_dirs=None,
125 debug=0,
126 extra_preargs=None,
127 extra_postargs=None):
Greg Ward32c4a8a2000-03-06 03:40:29 +0000128 (output_dir, macros, include_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000129 self._fix_compile_args(output_dir, macros, include_dirs)
130 (objects, skip_sources) = self._prep_compile(sources, output_dir)
Greg Ward170bdc01999-07-10 02:04:22 +0000131
Greg Ward32c4a8a2000-03-06 03:40:29 +0000132 # Figure out the options for the compiler command line.
Greg Wardbe86bde2000-09-26 01:56:15 +0000133 pp_opts = gen_preprocess_options(macros, include_dirs)
Greg Ward73076ff2000-06-25 02:05:29 +0000134 cc_args = pp_opts + ['-c']
Greg Wardba233fb2000-02-09 02:17:00 +0000135 if debug:
136 cc_args[:0] = ['-g']
Greg Wardef6f5152000-02-03 23:07:19 +0000137 if extra_preargs:
138 cc_args[:0] = extra_preargs
139 if extra_postargs is None:
140 extra_postargs = []
Greg Ward8037cb11999-09-13 03:12:53 +0000141
Greg Ward32c4a8a2000-03-06 03:40:29 +0000142 # Compile all source files that weren't eliminated by
Fred Drakeb94b8492001-12-06 20:51:35 +0000143 # '_prep_compile()'.
Greg Wardbe86bde2000-09-26 01:56:15 +0000144 for i in range(len(sources)):
Greg Ward32c4a8a2000-03-06 03:40:29 +0000145 src = sources[i] ; obj = objects[i]
146 if skip_sources[src]:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000147 log.debug("skipping %s (%s up-to-date)", src, obj)
Greg Ward32c4a8a2000-03-06 03:40:29 +0000148 else:
Greg Wardbe86bde2000-09-26 01:56:15 +0000149 self.mkpath(os.path.dirname(obj))
Greg Wardd1517112000-05-30 01:56:44 +0000150 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000151 self.spawn(self.compiler_so + cc_args +
152 [src, '-o', obj] +
153 extra_postargs)
Greg Wardd1517112000-05-30 01:56:44 +0000154 except DistutilsExecError, msg:
155 raise CompileError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000156
Greg Ward32c4a8a2000-03-06 03:40:29 +0000157 # Return *all* object filenames, not just the ones we just built.
158 return objects
Greg Ward170bdc01999-07-10 02:04:22 +0000159
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000160 def create_static_lib(self,
161 objects,
162 output_libname,
163 output_dir=None,
164 debug=0):
Greg Wardbe86bde2000-09-26 01:56:15 +0000165 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000166
Greg Ward32c4a8a2000-03-06 03:40:29 +0000167 output_filename = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000168 self.library_filename(output_libname, output_dir=output_dir)
Greg Wardc9f31872000-01-09 22:47:53 +0000169
Greg Wardbe86bde2000-09-26 01:56:15 +0000170 if self._need_link(objects, output_filename):
171 self.mkpath(os.path.dirname(output_filename))
172 self.spawn(self.archiver +
173 [output_filename] +
174 objects + self.objects)
Greg Ward1c793302000-04-14 00:48:15 +0000175
Greg Ward8eef5832000-04-14 13:53:34 +0000176 # Not many Unices required ranlib anymore -- SunOS 4.x is, I
177 # think the only major Unix that does. Maybe we need some
178 # platform intelligence here to skip ranlib if it's not
179 # needed -- or maybe Python's configure script took care of
180 # it for us, hence the check for leading colon.
Greg Ward73076ff2000-06-25 02:05:29 +0000181 if self.ranlib:
Greg Wardd1517112000-05-30 01:56:44 +0000182 try:
Greg Wardbe86bde2000-09-26 01:56:15 +0000183 self.spawn(self.ranlib + [output_filename])
Greg Wardd1517112000-05-30 01:56:44 +0000184 except DistutilsExecError, msg:
185 raise LibError, msg
Greg Wardc9f31872000-01-09 22:47:53 +0000186 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000187 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardc9f31872000-01-09 22:47:53 +0000188
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000189 def link(self,
190 target_desc,
191 objects,
192 output_filename,
193 output_dir=None,
194 libraries=None,
195 library_dirs=None,
196 runtime_library_dirs=None,
197 export_symbols=None,
198 debug=0,
199 extra_preargs=None,
200 extra_postargs=None,
201 build_temp=None):
Greg Wardbe86bde2000-09-26 01:56:15 +0000202 (objects, output_dir) = self._fix_object_args(objects, output_dir)
Greg Warde21dabe2000-03-26 21:40:19 +0000203 (libraries, library_dirs, runtime_library_dirs) = \
Greg Wardbe86bde2000-09-26 01:56:15 +0000204 self._fix_lib_args(libraries, library_dirs, runtime_library_dirs)
Greg Ward04d78321999-12-12 16:57:47 +0000205
Greg Wardbe86bde2000-09-26 01:56:15 +0000206 lib_opts = gen_lib_options(self,
207 library_dirs, runtime_library_dirs,
208 libraries)
209 if type(output_dir) not in (StringType, NoneType):
Greg Ward10ca82b2000-02-10 02:51:32 +0000210 raise TypeError, "'output_dir' must be a string or None"
Greg Ward8037cb11999-09-13 03:12:53 +0000211 if output_dir is not None:
Greg Wardbe86bde2000-09-26 01:56:15 +0000212 output_filename = os.path.join(output_dir, output_filename)
Greg Ward170bdc01999-07-10 02:04:22 +0000213
Greg Wardbe86bde2000-09-26 01:56:15 +0000214 if self._need_link(objects, output_filename):
Fred Drakeb94b8492001-12-06 20:51:35 +0000215 ld_args = (objects + self.objects +
Greg Ward32c4a8a2000-03-06 03:40:29 +0000216 lib_opts + ['-o', output_filename])
Greg Wardba233fb2000-02-09 02:17:00 +0000217 if debug:
218 ld_args[:0] = ['-g']
Greg Ward0e3530b1999-09-29 12:22:50 +0000219 if extra_preargs:
220 ld_args[:0] = extra_preargs
221 if extra_postargs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000222 ld_args.extend(extra_postargs)
223 self.mkpath(os.path.dirname(output_filename))
Greg Wardd1517112000-05-30 01:56:44 +0000224 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000225 if target_desc == CCompiler.EXECUTABLE:
Greg Ward42406482000-09-27 02:08:14 +0000226 self.spawn(self.linker_exe + ld_args)
227 else:
228 self.spawn(self.linker_so + ld_args)
Greg Wardd1517112000-05-30 01:56:44 +0000229 except DistutilsExecError, msg:
230 raise LinkError, msg
Greg Ward8037cb11999-09-13 03:12:53 +0000231 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000232 log.debug("skipping %s (up-to-date)", output_filename)
Greg Ward5e717441999-08-14 23:53:53 +0000233
Greg Ward32c4a8a2000-03-06 03:40:29 +0000234 # -- Miscellaneous methods -----------------------------------------
235 # These are all used by the 'gen_lib_options() function, in
236 # ccompiler.py.
Fred Drakeb94b8492001-12-06 20:51:35 +0000237
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000238 def library_dir_option(self, dir):
Greg Ward4fecfce1999-10-03 20:45:33 +0000239 return "-L" + dir
240
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000241 def runtime_library_dir_option(self, dir):
Fred Draked15db5c2001-12-11 05:04:24 +0000242 # XXX Hackish, at the very least. See Python bug #445902:
243 # http://sourceforge.net/tracker/index.php
244 # ?func=detail&aid=445902&group_id=5470&atid=105470
245 # Linkers on different platforms need different options to
246 # specify that directories need to be added to the list of
247 # directories searched for dependencies when a dynamic library
248 # is sought. GCC has to be told to pass the -R option through
249 # to the linker, whereas other compilers just know this.
250 # Other compilers may need something slightly different. At
251 # this time, there's no way to determine this information from
252 # the configuration data stored in the Python installation, so
253 # we use this hack.
254 compiler = os.path.basename(sysconfig.get_config_var("CC"))
255 if compiler == "gcc" or compiler == "g++":
256 return "-Wl,-R" + dir
257 else:
258 return "-R" + dir
Greg Wardd03f88a2000-03-18 15:19:51 +0000259
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000260 def library_option(self, lib):
Greg Ward4fecfce1999-10-03 20:45:33 +0000261 return "-l" + lib
262
Jeremy Hylton28f46e12002-06-13 14:58:30 +0000263 def find_library_file(self, dirs, lib, debug=0):
Greg Ward4fecfce1999-10-03 20:45:33 +0000264 for dir in dirs:
Greg Wardbe86bde2000-09-26 01:56:15 +0000265 shared = os.path.join(
266 dir, self.library_filename(lib, lib_type='shared'))
Jack Jansene259e592001-08-27 15:08:16 +0000267 dylib = os.path.join(
268 dir, self.library_filename(lib, lib_type='dylib'))
Greg Wardbe86bde2000-09-26 01:56:15 +0000269 static = os.path.join(
270 dir, self.library_filename(lib, lib_type='static'))
Greg Ward4fecfce1999-10-03 20:45:33 +0000271
272 # We're second-guessing the linker here, with not much hard
273 # data to go on: GCC seems to prefer the shared library, so I'm
274 # assuming that *all* Unix C compilers do. And of course I'm
275 # ignoring even GCC's "-static" option. So sue me.
Jack Jansene259e592001-08-27 15:08:16 +0000276 if os.path.exists(dylib):
277 return dylib
278 elif os.path.exists(shared):
Greg Ward4fecfce1999-10-03 20:45:33 +0000279 return shared
Greg Wardbe86bde2000-09-26 01:56:15 +0000280 elif os.path.exists(static):
Greg Ward4fecfce1999-10-03 20:45:33 +0000281 return static
282
283 else:
284 # Oops, didn't find it in *any* of 'dirs'
285 return None