blob: 036cbe9f48a614571c8320738fc3e2687f9d4b06 [file] [log] [blame]
Greg Ward3f81cf71999-07-10 02:03:53 +00001"""distutils.ccompiler
2
3Contains CCompiler, an abstract base class that defines the interface
4for the Distutils compiler abstraction model."""
5
6# created 1999/07/05, Greg Ward
7
8__rcsid__ = "$Id$"
9
Greg Ward802d6b71999-09-29 12:20:55 +000010import sys, os
Greg Ward3f81cf71999-07-10 02:03:53 +000011from types import *
12from copy import copy
13from distutils.errors import *
Greg Warde1aaaa61999-08-14 23:50:50 +000014from distutils.spawn import spawn
Greg Ward9b17cb51999-09-13 03:07:24 +000015from distutils.util import move_file
Greg Ward3f81cf71999-07-10 02:03:53 +000016
17
18class CCompiler:
19 """Abstract base class to define the interface that must be implemented
20 by real compiler abstraction classes. Might have some use as a
21 place for shared code, but it's not yet clear what code can be
22 shared between compiler abstraction models for different platforms.
23
24 The basic idea behind a compiler abstraction class is that each
25 instance can be used for all the compile/link steps in building
26 a single project. Thus, attributes common to all of those compile
27 and link steps -- include directories, macros to define, libraries
28 to link against, etc. -- are attributes of the compiler instance.
29 To allow for variability in how individual files are treated,
30 most (all?) of those attributes may be varied on a per-compilation
31 or per-link basis."""
32
Greg Ward802d6b71999-09-29 12:20:55 +000033 # 'compiler_type' is a class attribute that identifies this class. It
34 # keeps code that wants to know what kind of compiler it's dealing with
35 # from having to import all possible compiler classes just to do an
36 # 'isinstance'. In concrete CCompiler subclasses, 'compiler_type'
37 # should really, really be one of the keys of the 'compiler_class'
38 # dictionary (see below -- used by the 'new_compiler()' factory
39 # function) -- authors of new compiler interface classes are
40 # responsible for updating 'compiler_class'!
41 compiler_type = None
Greg Ward3f81cf71999-07-10 02:03:53 +000042
43 # XXX things not handled by this compiler abstraction model:
44 # * client can't provide additional options for a compiler,
45 # e.g. warning, optimization, debugging flags. Perhaps this
46 # should be the domain of concrete compiler abstraction classes
47 # (UnixCCompiler, MSVCCompiler, etc.) -- or perhaps the base
48 # class should have methods for the common ones.
49 # * can't put output files (object files, libraries, whatever)
50 # into a separate directory from their inputs. Should this be
51 # handled by an 'output_dir' attribute of the whole object, or a
52 # parameter to the compile/link_* methods, or both?
53 # * can't completely override the include or library searchg
54 # path, ie. no "cc -I -Idir1 -Idir2" or "cc -L -Ldir1 -Ldir2".
Greg Warde1aaaa61999-08-14 23:50:50 +000055 # I'm not sure how widely supported this is even by Unix
Greg Ward3f81cf71999-07-10 02:03:53 +000056 # compilers, much less on other platforms. And I'm even less
Greg Warde1aaaa61999-08-14 23:50:50 +000057 # sure how useful it is; maybe for cross-compiling, but
58 # support for that is a ways off. (And anyways, cross
59 # compilers probably have a dedicated binary with the
60 # right paths compiled in. I hope.)
Greg Ward3f81cf71999-07-10 02:03:53 +000061 # * can't do really freaky things with the library list/library
62 # dirs, e.g. "-Ldir1 -lfoo -Ldir2 -lfoo" to link against
63 # different versions of libfoo.a in different locations. I
64 # think this is useless without the ability to null out the
65 # library search path anyways.
Greg Ward3f81cf71999-07-10 02:03:53 +000066
67
Greg Warde1aaaa61999-08-14 23:50:50 +000068 def __init__ (self,
69 verbose=0,
Greg Ward3febd601999-10-03 20:41:02 +000070 dry_run=0,
71 force=0):
Greg Warde1aaaa61999-08-14 23:50:50 +000072
73 self.verbose = verbose
74 self.dry_run = dry_run
Greg Ward3febd601999-10-03 20:41:02 +000075 self.force = force
Greg Ward3f81cf71999-07-10 02:03:53 +000076
Greg Ward9b17cb51999-09-13 03:07:24 +000077 # 'output_dir': a common output directory for object, library,
78 # shared object, and shared library files
79 self.output_dir = None
80
Greg Ward3f81cf71999-07-10 02:03:53 +000081 # 'macros': a list of macro definitions (or undefinitions). A
82 # macro definition is a 2-tuple (name, value), where the value is
83 # either a string or None (no explicit value). A macro
84 # undefinition is a 1-tuple (name,).
85 self.macros = []
86
Greg Ward3f81cf71999-07-10 02:03:53 +000087 # 'include_dirs': a list of directories to search for include files
88 self.include_dirs = []
89
90 # 'libraries': a list of libraries to include in any link
91 # (library names, not filenames: eg. "foo" not "libfoo.a")
92 self.libraries = []
93
94 # 'library_dirs': a list of directories to search for libraries
95 self.library_dirs = []
96
Greg Warde1aaaa61999-08-14 23:50:50 +000097 # 'runtime_library_dirs': a list of directories to search for
98 # shared libraries/objects at runtime
99 self.runtime_library_dirs = []
100
Greg Ward3f81cf71999-07-10 02:03:53 +0000101 # 'objects': a list of object files (or similar, such as explicitly
102 # named library files) to include on any link
103 self.objects = []
104
105 # __init__ ()
106
107
108 def _find_macro (self, name):
109 i = 0
110 for defn in self.macros:
111 if defn[0] == name:
112 return i
113 i = i + 1
114
115 return None
116
117
118 def _check_macro_definitions (self, definitions):
119 """Ensures that every element of 'definitions' is a valid macro
120 definition, ie. either (name,value) 2-tuple or a (name,)
121 tuple. Do nothing if all definitions are OK, raise
122 TypeError otherwise."""
123
124 for defn in definitions:
125 if not (type (defn) is TupleType and
126 (len (defn) == 1 or
127 (len (defn) == 2 and
128 (type (defn[1]) is StringType or defn[1] is None))) and
129 type (defn[0]) is StringType):
130 raise TypeError, \
131 ("invalid macro definition '%s': " % defn) + \
132 "must be tuple (string,), (string, string), or " + \
133 "(string, None)"
134
135
136 # -- Bookkeeping methods -------------------------------------------
137
138 def define_macro (self, name, value=None):
139 """Define a preprocessor macro for all compilations driven by
140 this compiler object. The optional parameter 'value' should be
141 a string; if it is not supplied, then the macro will be defined
142 without an explicit value and the exact outcome depends on the
143 compiler used (XXX true? does ANSI say anything about this?)"""
144
145 # Delete from the list of macro definitions/undefinitions if
146 # already there (so that this one will take precedence).
147 i = self._find_macro (name)
148 if i is not None:
149 del self.macros[i]
150
151 defn = (name, value)
152 self.macros.append (defn)
153
154
155 def undefine_macro (self, name):
156 """Undefine a preprocessor macro for all compilations driven by
157 this compiler object. If the same macro is defined by
158 'define_macro()' and undefined by 'undefine_macro()' the last
159 call takes precedence (including multiple redefinitions or
160 undefinitions). If the macro is redefined/undefined on a
161 per-compilation basis (ie. in the call to 'compile()'), then
162 that takes precedence."""
163
164 # Delete from the list of macro definitions/undefinitions if
165 # already there (so that this one will take precedence).
166 i = self._find_macro (name)
167 if i is not None:
168 del self.macros[i]
169
170 undefn = (name,)
171 self.macros.append (undefn)
172
173
174 def add_include_dir (self, dir):
175 """Add 'dir' to the list of directories that will be searched
176 for header files. The compiler is instructed to search
177 directories in the order in which they are supplied by
178 successive calls to 'add_include_dir()'."""
179 self.include_dirs.append (dir)
180
181 def set_include_dirs (self, dirs):
182 """Set the list of directories that will be searched to 'dirs'
183 (a list of strings). Overrides any preceding calls to
184 'add_include_dir()'; subsequence calls to 'add_include_dir()'
185 add to the list passed to 'set_include_dirs()'. This does
186 not affect any list of standard include directories that
187 the compiler may search by default."""
188 self.include_dirs = copy (dirs)
189
190
191 def add_library (self, libname):
192 """Add 'libname' to the list of libraries that will be included
193 in all links driven by this compiler object. Note that
194 'libname' should *not* be the name of a file containing a
195 library, but the name of the library itself: the actual filename
196 will be inferred by the linker, the compiler, or the compiler
197 abstraction class (depending on the platform).
198
199 The linker will be instructed to link against libraries in the
200 order they were supplied to 'add_library()' and/or
201 'set_libraries()'. It is perfectly valid to duplicate library
202 names; the linker will be instructed to link against libraries
203 as many times as they are mentioned."""
204 self.libraries.append (libname)
205
206 def set_libraries (self, libnames):
207 """Set the list of libraries to be included in all links driven
208 by this compiler object to 'libnames' (a list of strings).
209 This does not affect any standard system libraries that the
210 linker may include by default."""
211
212 self.libraries = copy (libnames)
213
214
215 def add_library_dir (self, dir):
216 """Add 'dir' to the list of directories that will be searched for
217 libraries specified to 'add_library()' and 'set_libraries()'.
218 The linker will be instructed to search for libraries in the
219 order they are supplied to 'add_library_dir()' and/or
220 'set_library_dirs()'."""
221 self.library_dirs.append (dir)
222
223 def set_library_dirs (self, dirs):
224 """Set the list of library search directories to 'dirs' (a list
225 of strings). This does not affect any standard library
226 search path that the linker may search by default."""
227 self.library_dirs = copy (dirs)
228
229
Greg Warde1aaaa61999-08-14 23:50:50 +0000230 def add_runtime_library_dir (self, dir):
231 """Add 'dir' to the list of directories that will be searched for
232 shared libraries at runtime."""
233 self.runtime_library_dirs.append (dir)
234
235 def set_runtime_library_dirs (self, dirs):
236 """Set the list of directories to search for shared libraries
237 at runtime to 'dirs' (a list of strings). This does not affect
238 any standard search path that the runtime linker may search by
239 default."""
240 self.runtime_library_dirs = copy (dirs)
241
242
Greg Ward3f81cf71999-07-10 02:03:53 +0000243 def add_link_object (self, object):
244 """Add 'object' to the list of object files (or analogues, such
245 as explictly named library files or the output of "resource
246 compilers") to be included in every link driven by this
247 compiler object."""
248 self.objects.append (object)
249
250 def set_link_objects (self, objects):
251 """Set the list of object files (or analogues) to be included
252 in every link to 'objects'. This does not affect any
253 standard object files that the linker may include by default
254 (such as system libraries)."""
255 self.objects = copy (objects)
256
257
258 # -- Worker methods ------------------------------------------------
259 # (must be implemented by subclasses)
260
261 def compile (self,
262 sources,
Greg Ward9b17cb51999-09-13 03:07:24 +0000263 output_dir=None,
Greg Ward3f81cf71999-07-10 02:03:53 +0000264 macros=None,
Greg Ward0bdd90a1999-12-12 17:19:58 +0000265 include_dirs=None,
Greg Ward802d6b71999-09-29 12:20:55 +0000266 extra_preargs=None,
267 extra_postargs=None):
Greg Ward3f81cf71999-07-10 02:03:53 +0000268 """Compile one or more C/C++ source files. 'sources' must be
269 a list of strings, each one the name of a C/C++ source
270 file. Return a list of the object filenames generated
271 (one for each source filename in 'sources').
272
273 'macros', if given, must be a list of macro definitions. A
274 macro definition is either a (name, value) 2-tuple or a (name,)
275 1-tuple. The former defines a macro; if the value is None, the
276 macro is defined without an explicit value. The 1-tuple case
277 undefines a macro. Later definitions/redefinitions/
278 undefinitions take precedence.
279
Greg Ward0bdd90a1999-12-12 17:19:58 +0000280 'include_dirs', if given, must be a list of strings, the directories
Greg Ward3f81cf71999-07-10 02:03:53 +0000281 to add to the default include file search path for this
Greg Ward802d6b71999-09-29 12:20:55 +0000282 compilation only.
283
284 'extra_preargs' and 'extra_postargs' are optional lists of extra
285 command-line arguments that will be, respectively, prepended or
286 appended to the generated command line immediately before
287 execution. These will most likely be peculiar to the particular
288 platform and compiler being worked with, but are a necessary
289 escape hatch for those occasions when the abstract compiler
290 framework doesn't cut the mustard."""
291
Greg Ward3f81cf71999-07-10 02:03:53 +0000292 pass
293
294
Greg Ward3f81cf71999-07-10 02:03:53 +0000295 def link_static_lib (self,
296 objects,
297 output_libname,
Greg Ward5baf1c22000-01-09 22:41:02 +0000298 output_dir=None):
Greg Ward3f81cf71999-07-10 02:03:53 +0000299 """Link a bunch of stuff together to create a static library
300 file. The "bunch of stuff" consists of the list of object
301 files supplied as 'objects', the extra object files supplied
302 to 'add_link_object()' and/or 'set_link_objects()', the
303 libraries supplied to 'add_library()' and/or
304 'set_libraries()', and the libraries supplied as 'libraries'
305 (if any).
306
307 'output_libname' should be a library name, not a filename;
308 the filename will be inferred from the library name.
309
Greg Ward3febd601999-10-03 20:41:02 +0000310 'libraries' is a list of libraries to link against. These are
311 library names, not filenames, since they're translated into
312 filenames in a platform-specific way (eg. "foo" becomes
313 "libfoo.a" on Unix and "foo.lib" on DOS/Windows). However, they
314 can include a directory component, which means the linker will
315 look in that specific directory rather than searching all the
316 normal locations.
317
318 'library_dirs', if supplied, should be a list of directories to
319 search for libraries that were specified as bare library names
320 (ie. no directory component). These are on top of the system
321 default and those supplied to 'add_library_dir()' and/or
322 'set_library_dirs()'.
Greg Ward802d6b71999-09-29 12:20:55 +0000323
324 'extra_preargs' and 'extra_postargs' are as for 'compile()'
325 (except of course that they supply command-line arguments
326 for the particular linker being used)."""
Greg Ward3f81cf71999-07-10 02:03:53 +0000327
328 pass
329
330
Greg Ward3f81cf71999-07-10 02:03:53 +0000331 def link_shared_lib (self,
332 objects,
333 output_libname,
Greg Ward9b17cb51999-09-13 03:07:24 +0000334 output_dir=None,
Greg Ward3f81cf71999-07-10 02:03:53 +0000335 libraries=None,
Greg Ward26e48ea1999-08-29 18:17:36 +0000336 library_dirs=None,
Greg Ward802d6b71999-09-29 12:20:55 +0000337 extra_preargs=None,
338 extra_postargs=None):
Greg Ward3f81cf71999-07-10 02:03:53 +0000339 """Link a bunch of stuff together to create a shared library
340 file. Has the same effect as 'link_static_lib()' except
341 that the filename inferred from 'output_libname' will most
342 likely be different, and the type of file generated will
343 almost certainly be different."""
344 pass
345
Greg Ward802d6b71999-09-29 12:20:55 +0000346
Greg Ward3f81cf71999-07-10 02:03:53 +0000347 def link_shared_object (self,
348 objects,
349 output_filename,
Greg Ward9b17cb51999-09-13 03:07:24 +0000350 output_dir=None,
Greg Ward3f81cf71999-07-10 02:03:53 +0000351 libraries=None,
Greg Ward26e48ea1999-08-29 18:17:36 +0000352 library_dirs=None,
Greg Ward802d6b71999-09-29 12:20:55 +0000353 extra_preargs=None,
354 extra_postargs=None):
Greg Ward3f81cf71999-07-10 02:03:53 +0000355 """Link a bunch of stuff together to create a shared object
Greg Ward9b17cb51999-09-13 03:07:24 +0000356 file. Much like 'link_shared_lib()', except the output filename
357 is explicitly supplied as 'output_filename'. If 'output_dir' is
358 supplied, 'output_filename' is relative to it
Greg Ward802d6b71999-09-29 12:20:55 +0000359 (i.e. 'output_filename' can provide directory components if
Greg Ward9b17cb51999-09-13 03:07:24 +0000360 needed)."""
Greg Ward3f81cf71999-07-10 02:03:53 +0000361 pass
362
Greg Warde1aaaa61999-08-14 23:50:50 +0000363
Greg Ward5baf1c22000-01-09 22:41:02 +0000364 def link_executable (self,
365 objects,
366 output_progname,
367 output_dir=None,
368 libraries=None,
369 library_dirs=None,
370 extra_preargs=None,
371 extra_postargs=None):
372 """Link a bunch of stuff together to create a binary executable
373 file. The "bunch of stuff" is as for 'link_static_lib()'.
374 'output_progname' should be the base name of the executable
375 program--e.g. on Unix the same as the output filename, but
376 on DOS/Windows ".exe" will be appended."""
377 pass
378
379
380
Greg Warde1aaaa61999-08-14 23:50:50 +0000381 # -- Filename mangling methods -------------------------------------
382
Greg Ward9b17cb51999-09-13 03:07:24 +0000383 # General principle for the filename-mangling methods: by default,
384 # don't include a directory component, no matter what the caller
385 # supplies. Eg. for UnixCCompiler, a source file of "foo/bar/baz.c"
386 # becomes "baz.o" or "baz.so", etc. (That way, it's easiest for the
387 # caller to decide where it wants to put/find the output file.) The
388 # 'output_dir' parameter overrides this, of course -- the directory
389 # component of the input filenames is replaced by 'output_dir'.
390
391 def object_filenames (self, source_filenames, output_dir=None):
Greg Warde1aaaa61999-08-14 23:50:50 +0000392 """Return the list of object filenames corresponding to each
393 specified source filename."""
394 pass
395
Greg Ward26e48ea1999-08-29 18:17:36 +0000396 def shared_object_filename (self, source_filename):
Greg Warde1aaaa61999-08-14 23:50:50 +0000397 """Return the shared object filename corresponding to a
Greg Ward9b17cb51999-09-13 03:07:24 +0000398 specified source filename (assuming the same directory)."""
Greg Warde1aaaa61999-08-14 23:50:50 +0000399 pass
400
Greg Ward26e48ea1999-08-29 18:17:36 +0000401 def library_filename (self, libname):
Greg Warde1aaaa61999-08-14 23:50:50 +0000402 """Return the static library filename corresponding to the
403 specified library name."""
404
405 pass
406
Greg Ward26e48ea1999-08-29 18:17:36 +0000407 def shared_library_filename (self, libname):
Greg Warde1aaaa61999-08-14 23:50:50 +0000408 """Return the shared library filename corresponding to the
409 specified library name."""
410 pass
411
Greg Ward9b17cb51999-09-13 03:07:24 +0000412 # XXX ugh -- these should go!
Greg Ward26e48ea1999-08-29 18:17:36 +0000413 def object_name (self, inname):
414 """Given a name with no extension, return the name + object extension"""
415 return inname + self._obj_ext
416
417 def shared_library_name (self, inname):
418 """Given a name with no extension, return the name + shared object extension"""
419 return inname + self._shared_lib_ext
Greg Warde1aaaa61999-08-14 23:50:50 +0000420
421 # -- Utility methods -----------------------------------------------
422
Greg Ward9b17cb51999-09-13 03:07:24 +0000423 def announce (self, msg, level=1):
424 if self.verbose >= level:
425 print msg
426
Greg Ward3febd601999-10-03 20:41:02 +0000427 def warn (self, msg):
428 sys.stderr.write ("warning: %s\n" % msg)
429
Greg Warde1aaaa61999-08-14 23:50:50 +0000430 def spawn (self, cmd):
431 spawn (cmd, verbose=self.verbose, dry_run=self.dry_run)
432
Greg Ward9b17cb51999-09-13 03:07:24 +0000433 def move_file (self, src, dst):
434 return move_file (src, dst, verbose=self.verbose, dry_run=self.dry_run)
435
Greg Warde1aaaa61999-08-14 23:50:50 +0000436
Greg Ward3f81cf71999-07-10 02:03:53 +0000437# class CCompiler
438
439
Greg Ward802d6b71999-09-29 12:20:55 +0000440# Map a platform ('posix', 'nt') to the default compiler type for
441# that platform.
442default_compiler = { 'posix': 'unix',
443 'nt': 'msvc',
444 }
445
446# Map compiler types to (module_name, class_name) pairs -- ie. where to
447# find the code that implements an interface to this compiler. (The module
448# is assumed to be in the 'distutils' package.)
449compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler'),
450 'msvc': ('msvccompiler', 'MSVCCompiler'),
451 }
452
453
Greg Warde1aaaa61999-08-14 23:50:50 +0000454def new_compiler (plat=None,
Greg Ward802d6b71999-09-29 12:20:55 +0000455 compiler=None,
Greg Warde1aaaa61999-08-14 23:50:50 +0000456 verbose=0,
Greg Ward3febd601999-10-03 20:41:02 +0000457 dry_run=0,
458 force=0):
Greg Ward3f81cf71999-07-10 02:03:53 +0000459
Greg Ward802d6b71999-09-29 12:20:55 +0000460 """Generate an instance of some CCompiler subclass for the supplied
461 platform/compiler combination. 'plat' defaults to 'os.name'
462 (eg. 'posix', 'nt'), and 'compiler' defaults to the default
463 compiler for that platform. Currently only 'posix' and 'nt'
464 are supported, and the default compilers are "traditional Unix
465 interface" (UnixCCompiler class) and Visual C++ (MSVCCompiler
466 class). Note that it's perfectly possible to ask for a Unix
467 compiler object under Windows, and a Microsoft compiler object
468 under Unix -- if you supply a value for 'compiler', 'plat'
469 is ignored."""
470
471 if plat is None:
472 plat = os.name
473
474 try:
475 if compiler is None:
476 compiler = default_compiler[plat]
477
478 (module_name, class_name) = compiler_class[compiler]
479 except KeyError:
480 msg = "don't know how to compile C/C++ code on platform '%s'" % plat
481 if compiler is not None:
482 msg = msg + " with '%s' compiler" % compiler
483 raise DistutilsPlatformError, msg
484
485 try:
486 module_name = "distutils." + module_name
487 __import__ (module_name)
488 module = sys.modules[module_name]
489 klass = vars(module)[class_name]
490 except ImportError:
491 raise DistutilsModuleError, \
492 "can't compile C/C++ code: unable to load module '%s'" % \
493 module_name
494 except KeyError:
495 raise DistutilsModuleError, \
496 ("can't compile C/C++ code: unable to find class '%s' " +
497 "in module '%s'") % (class_name, module_name)
498
Greg Ward3febd601999-10-03 20:41:02 +0000499 return klass (verbose, dry_run, force)
Greg Wardf7a39ec1999-09-08 02:29:08 +0000500
501
Greg Ward0bdd90a1999-12-12 17:19:58 +0000502def gen_preprocess_options (macros, include_dirs):
Greg Wardf7a39ec1999-09-08 02:29:08 +0000503 """Generate C pre-processor options (-D, -U, -I) as used by at
504 least two types of compilers: the typical Unix compiler and Visual
505 C++. 'macros' is the usual thing, a list of 1- or 2-tuples, where
506 (name,) means undefine (-U) macro 'name', and (name,value) means
Greg Ward0bdd90a1999-12-12 17:19:58 +0000507 define (-D) macro 'name' to 'value'. 'include_dirs' is just a list of
Greg Wardf7a39ec1999-09-08 02:29:08 +0000508 directory names to be added to the header file search path (-I).
509 Returns a list of command-line options suitable for either
510 Unix compilers or Visual C++."""
511
512 # XXX it would be nice (mainly aesthetic, and so we don't generate
513 # stupid-looking command lines) to go over 'macros' and eliminate
514 # redundant definitions/undefinitions (ie. ensure that only the
515 # latest mention of a particular macro winds up on the command
516 # line). I don't think it's essential, though, since most (all?)
517 # Unix C compilers only pay attention to the latest -D or -U
518 # mention of a macro on their command line. Similar situation for
Greg Ward0bdd90a1999-12-12 17:19:58 +0000519 # 'include_dirs'. I'm punting on both for now. Anyways, weeding out
Greg Wardf7a39ec1999-09-08 02:29:08 +0000520 # redundancies like this should probably be the province of
521 # CCompiler, since the data structures used are inherited from it
522 # and therefore common to all CCompiler classes.
523
524 pp_opts = []
525 for macro in macros:
Greg Wardfbf8aff1999-09-21 18:35:09 +0000526
527 if not (type (macro) is TupleType and
528 1 <= len (macro) <= 2):
529 raise TypeError, \
530 ("bad macro definition '%s': " +
531 "each element of 'macros' list must be a 1- or 2-tuple") % \
532 macro
533
Greg Wardf7a39ec1999-09-08 02:29:08 +0000534 if len (macro) == 1: # undefine this macro
535 pp_opts.append ("-U%s" % macro[0])
536 elif len (macro) == 2:
537 if macro[1] is None: # define with no explicit value
538 pp_opts.append ("-D%s" % macro[0])
539 else:
540 # XXX *don't* need to be clever about quoting the
541 # macro value here, because we're going to avoid the
542 # shell at all costs when we spawn the command!
543 pp_opts.append ("-D%s=%s" % macro)
544
Greg Ward0bdd90a1999-12-12 17:19:58 +0000545 for dir in include_dirs:
Greg Wardf7a39ec1999-09-08 02:29:08 +0000546 pp_opts.append ("-I%s" % dir)
547
548 return pp_opts
549
550# gen_preprocess_options ()
551
552
Greg Ward3febd601999-10-03 20:41:02 +0000553def gen_lib_options (compiler, library_dirs, libraries):
Greg Wardf7a39ec1999-09-08 02:29:08 +0000554 """Generate linker options for searching library directories and
555 linking with specific libraries. 'libraries' and 'library_dirs'
556 are, respectively, lists of library names (not filenames!) and
Greg Ward3febd601999-10-03 20:41:02 +0000557 search directories. Returns a list of command-line options suitable
558 for use with some compiler (depending on the two format strings
559 passed in)."""
Greg Wardf7a39ec1999-09-08 02:29:08 +0000560
561 lib_opts = []
562
563 for dir in library_dirs:
Greg Ward3febd601999-10-03 20:41:02 +0000564 lib_opts.append (compiler.library_dir_option (dir))
Greg Wardf7a39ec1999-09-08 02:29:08 +0000565
566 # XXX it's important that we *not* remove redundant library mentions!
567 # sometimes you really do have to say "-lfoo -lbar -lfoo" in order to
568 # resolve all symbols. I just hope we never have to say "-lfoo obj.o
569 # -lbar" to get things to work -- that's certainly a possibility, but a
570 # pretty nasty way to arrange your C code.
571
572 for lib in libraries:
Greg Ward3febd601999-10-03 20:41:02 +0000573 (lib_dir, lib_name) = os.path.split (lib)
574 if lib_dir:
575 lib_file = compiler.find_library_file ([lib_dir], lib_name)
576 if lib_file:
577 lib_opts.append (lib_file)
578 else:
579 compiler.warn ("no library file corresponding to "
580 "'%s' found (skipping)" % lib)
581 else:
582 lib_opts.append (compiler.library_option (lib))
Greg Wardf7a39ec1999-09-08 02:29:08 +0000583
584 return lib_opts
585
586# _gen_lib_options ()