mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Docstring reformatting/tweaking binge.
Fixed a few comments.
This commit is contained in:
parent
c3f364462f
commit
c3a43b4f9b
1 changed files with 235 additions and 231 deletions
|
|
@ -17,18 +17,17 @@ from distutils.util import move_file, mkpath, newer_pairwise, newer_group
|
||||||
|
|
||||||
class CCompiler:
|
class CCompiler:
|
||||||
"""Abstract base class to define the interface that must be implemented
|
"""Abstract base class to define the interface that must be implemented
|
||||||
by real compiler abstraction classes. Might have some use as a
|
by real compiler classes. Also has some utility methods used by
|
||||||
place for shared code, but it's not yet clear what code can be
|
several compiler classes.
|
||||||
shared between compiler abstraction models for different platforms.
|
|
||||||
|
|
||||||
The basic idea behind a compiler abstraction class is that each
|
The basic idea behind a compiler abstraction class is that each
|
||||||
instance can be used for all the compile/link steps in building
|
instance can be used for all the compile/link steps in building a
|
||||||
a single project. Thus, attributes common to all of those compile
|
single project. Thus, attributes common to all of those compile and
|
||||||
and link steps -- include directories, macros to define, libraries
|
link steps -- include directories, macros to define, libraries to link
|
||||||
to link against, etc. -- are attributes of the compiler instance.
|
against, etc. -- are attributes of the compiler instance. To allow for
|
||||||
To allow for variability in how individual files are treated,
|
variability in how individual files are treated, most of those
|
||||||
most (all?) of those attributes may be varied on a per-compilation
|
attributes may be varied on a per-compilation or per-link basis.
|
||||||
or per-link basis."""
|
"""
|
||||||
|
|
||||||
# 'compiler_type' is a class attribute that identifies this class. It
|
# 'compiler_type' is a class attribute that identifies this class. It
|
||||||
# keeps code that wants to know what kind of compiler it's dealing with
|
# keeps code that wants to know what kind of compiler it's dealing with
|
||||||
|
|
@ -46,10 +45,6 @@ class CCompiler:
|
||||||
# should be the domain of concrete compiler abstraction classes
|
# should be the domain of concrete compiler abstraction classes
|
||||||
# (UnixCCompiler, MSVCCompiler, etc.) -- or perhaps the base
|
# (UnixCCompiler, MSVCCompiler, etc.) -- or perhaps the base
|
||||||
# class should have methods for the common ones.
|
# class should have methods for the common ones.
|
||||||
# * can't put output files (object files, libraries, whatever)
|
|
||||||
# into a separate directory from their inputs. Should this be
|
|
||||||
# handled by an 'output_dir' attribute of the whole object, or a
|
|
||||||
# parameter to the compile/link_* methods, or both?
|
|
||||||
# * can't completely override the include or library searchg
|
# * can't completely override the include or library searchg
|
||||||
# path, ie. no "cc -I -Idir1 -Idir2" or "cc -L -Ldir1 -Ldir2".
|
# path, ie. no "cc -I -Idir1 -Idir2" or "cc -L -Ldir1 -Ldir2".
|
||||||
# I'm not sure how widely supported this is even by Unix
|
# I'm not sure how widely supported this is even by Unix
|
||||||
|
|
@ -129,10 +124,9 @@ class CCompiler:
|
||||||
|
|
||||||
def _check_macro_definitions (self, definitions):
|
def _check_macro_definitions (self, definitions):
|
||||||
"""Ensures that every element of 'definitions' is a valid macro
|
"""Ensures that every element of 'definitions' is a valid macro
|
||||||
definition, ie. either (name,value) 2-tuple or a (name,)
|
definition, ie. either (name,value) 2-tuple or a (name,) tuple. Do
|
||||||
tuple. Do nothing if all definitions are OK, raise
|
nothing if all definitions are OK, raise TypeError otherwise.
|
||||||
TypeError otherwise."""
|
"""
|
||||||
|
|
||||||
for defn in definitions:
|
for defn in definitions:
|
||||||
if not (type (defn) is TupleType and
|
if not (type (defn) is TupleType and
|
||||||
(len (defn) == 1 or
|
(len (defn) == 1 or
|
||||||
|
|
@ -148,12 +142,12 @@ class CCompiler:
|
||||||
# -- Bookkeeping methods -------------------------------------------
|
# -- Bookkeeping methods -------------------------------------------
|
||||||
|
|
||||||
def define_macro (self, name, value=None):
|
def define_macro (self, name, value=None):
|
||||||
"""Define a preprocessor macro for all compilations driven by
|
"""Define a preprocessor macro for all compilations driven by this
|
||||||
this compiler object. The optional parameter 'value' should be
|
compiler object. The optional parameter 'value' should be a
|
||||||
a string; if it is not supplied, then the macro will be defined
|
string; if it is not supplied, then the macro will be defined
|
||||||
without an explicit value and the exact outcome depends on the
|
without an explicit value and the exact outcome depends on the
|
||||||
compiler used (XXX true? does ANSI say anything about this?)"""
|
compiler used (XXX true? does ANSI say anything about this?)
|
||||||
|
"""
|
||||||
# Delete from the list of macro definitions/undefinitions if
|
# Delete from the list of macro definitions/undefinitions if
|
||||||
# already there (so that this one will take precedence).
|
# already there (so that this one will take precedence).
|
||||||
i = self._find_macro (name)
|
i = self._find_macro (name)
|
||||||
|
|
@ -166,13 +160,13 @@ class CCompiler:
|
||||||
|
|
||||||
def undefine_macro (self, name):
|
def undefine_macro (self, name):
|
||||||
"""Undefine a preprocessor macro for all compilations driven by
|
"""Undefine a preprocessor macro for all compilations driven by
|
||||||
this compiler object. If the same macro is defined by
|
this compiler object. If the same macro is defined by
|
||||||
'define_macro()' and undefined by 'undefine_macro()' the last
|
'define_macro()' and undefined by 'undefine_macro()' the last call
|
||||||
call takes precedence (including multiple redefinitions or
|
takes precedence (including multiple redefinitions or
|
||||||
undefinitions). If the macro is redefined/undefined on a
|
undefinitions). If the macro is redefined/undefined on a
|
||||||
per-compilation basis (ie. in the call to 'compile()'), then
|
per-compilation basis (ie. in the call to 'compile()'), then that
|
||||||
that takes precedence."""
|
takes precedence.
|
||||||
|
"""
|
||||||
# Delete from the list of macro definitions/undefinitions if
|
# Delete from the list of macro definitions/undefinitions if
|
||||||
# already there (so that this one will take precedence).
|
# already there (so that this one will take precedence).
|
||||||
i = self._find_macro (name)
|
i = self._find_macro (name)
|
||||||
|
|
@ -184,86 +178,94 @@ class CCompiler:
|
||||||
|
|
||||||
|
|
||||||
def add_include_dir (self, dir):
|
def add_include_dir (self, dir):
|
||||||
"""Add 'dir' to the list of directories that will be searched
|
"""Add 'dir' to the list of directories that will be searched for
|
||||||
for header files. The compiler is instructed to search
|
header files. The compiler is instructed to search directories in
|
||||||
directories in the order in which they are supplied by
|
the order in which they are supplied by successive calls to
|
||||||
successive calls to 'add_include_dir()'."""
|
'add_include_dir()'.
|
||||||
|
"""
|
||||||
self.include_dirs.append (dir)
|
self.include_dirs.append (dir)
|
||||||
|
|
||||||
def set_include_dirs (self, dirs):
|
def set_include_dirs (self, dirs):
|
||||||
"""Set the list of directories that will be searched to 'dirs'
|
"""Set the list of directories that will be searched to 'dirs' (a
|
||||||
(a list of strings). Overrides any preceding calls to
|
list of strings). Overrides any preceding calls to
|
||||||
'add_include_dir()'; subsequence calls to 'add_include_dir()'
|
'add_include_dir()'; subsequence calls to 'add_include_dir()' add
|
||||||
add to the list passed to 'set_include_dirs()'. This does
|
to the list passed to 'set_include_dirs()'. This does not affect
|
||||||
not affect any list of standard include directories that
|
any list of standard include directories that the compiler may
|
||||||
the compiler may search by default."""
|
search by default.
|
||||||
|
"""
|
||||||
self.include_dirs = copy (dirs)
|
self.include_dirs = copy (dirs)
|
||||||
|
|
||||||
|
|
||||||
def add_library (self, libname):
|
def add_library (self, libname):
|
||||||
"""Add 'libname' to the list of libraries that will be included
|
"""Add 'libname' to the list of libraries that will be included in
|
||||||
in all links driven by this compiler object. Note that
|
all links driven by this compiler object. Note that 'libname'
|
||||||
'libname' should *not* be the name of a file containing a
|
should *not* be the name of a file containing a library, but the
|
||||||
library, but the name of the library itself: the actual filename
|
name of the library itself: the actual filename will be inferred by
|
||||||
will be inferred by the linker, the compiler, or the compiler
|
the linker, the compiler, or the compiler class (depending on the
|
||||||
abstraction class (depending on the platform).
|
platform).
|
||||||
|
|
||||||
The linker will be instructed to link against libraries in the
|
The linker will be instructed to link against libraries in the
|
||||||
order they were supplied to 'add_library()' and/or
|
order they were supplied to 'add_library()' and/or
|
||||||
'set_libraries()'. It is perfectly valid to duplicate library
|
'set_libraries()'. It is perfectly valid to duplicate library
|
||||||
names; the linker will be instructed to link against libraries
|
names; the linker will be instructed to link against libraries as
|
||||||
as many times as they are mentioned."""
|
many times as they are mentioned.
|
||||||
|
"""
|
||||||
self.libraries.append (libname)
|
self.libraries.append (libname)
|
||||||
|
|
||||||
def set_libraries (self, libnames):
|
def set_libraries (self, libnames):
|
||||||
"""Set the list of libraries to be included in all links driven
|
"""Set the list of libraries to be included in all links driven by
|
||||||
by this compiler object to 'libnames' (a list of strings).
|
this compiler object to 'libnames' (a list of strings). This does
|
||||||
This does not affect any standard system libraries that the
|
not affect any standard system libraries that the linker may
|
||||||
linker may include by default."""
|
include by default.
|
||||||
|
"""
|
||||||
self.libraries = copy (libnames)
|
self.libraries = copy (libnames)
|
||||||
|
|
||||||
|
|
||||||
def add_library_dir (self, dir):
|
def add_library_dir (self, dir):
|
||||||
"""Add 'dir' to the list of directories that will be searched for
|
"""Add 'dir' to the list of directories that will be searched for
|
||||||
libraries specified to 'add_library()' and 'set_libraries()'.
|
libraries specified to 'add_library()' and 'set_libraries()'. The
|
||||||
The linker will be instructed to search for libraries in the
|
linker will be instructed to search for libraries in the order they
|
||||||
order they are supplied to 'add_library_dir()' and/or
|
are supplied to 'add_library_dir()' and/or 'set_library_dirs()'.
|
||||||
'set_library_dirs()'."""
|
"""
|
||||||
self.library_dirs.append (dir)
|
self.library_dirs.append (dir)
|
||||||
|
|
||||||
def set_library_dirs (self, dirs):
|
def set_library_dirs (self, dirs):
|
||||||
"""Set the list of library search directories to 'dirs' (a list
|
"""Set the list of library search directories to 'dirs' (a list of
|
||||||
of strings). This does not affect any standard library
|
strings). This does not affect any standard library search path
|
||||||
search path that the linker may search by default."""
|
that the linker may search by default.
|
||||||
|
"""
|
||||||
self.library_dirs = copy (dirs)
|
self.library_dirs = copy (dirs)
|
||||||
|
|
||||||
|
|
||||||
def add_runtime_library_dir (self, dir):
|
def add_runtime_library_dir (self, dir):
|
||||||
"""Add 'dir' to the list of directories that will be searched for
|
"""Add 'dir' to the list of directories that will be searched for
|
||||||
shared libraries at runtime."""
|
shared libraries at runtime.
|
||||||
|
"""
|
||||||
self.runtime_library_dirs.append (dir)
|
self.runtime_library_dirs.append (dir)
|
||||||
|
|
||||||
def set_runtime_library_dirs (self, dirs):
|
def set_runtime_library_dirs (self, dirs):
|
||||||
"""Set the list of directories to search for shared libraries
|
"""Set the list of directories to search for shared libraries at
|
||||||
at runtime to 'dirs' (a list of strings). This does not affect
|
runtime to 'dirs' (a list of strings). This does not affect any
|
||||||
any standard search path that the runtime linker may search by
|
standard search path that the runtime linker may search by
|
||||||
default."""
|
default.
|
||||||
|
"""
|
||||||
self.runtime_library_dirs = copy (dirs)
|
self.runtime_library_dirs = copy (dirs)
|
||||||
|
|
||||||
|
|
||||||
def add_link_object (self, object):
|
def add_link_object (self, object):
|
||||||
"""Add 'object' to the list of object files (or analogues, such
|
"""Add 'object' to the list of object files (or analogues, such as
|
||||||
as explictly named library files or the output of "resource
|
explictly named library files or the output of "resource
|
||||||
compilers") to be included in every link driven by this
|
compilers") to be included in every link driven by this compiler
|
||||||
compiler object."""
|
object.
|
||||||
|
"""
|
||||||
self.objects.append (object)
|
self.objects.append (object)
|
||||||
|
|
||||||
def set_link_objects (self, objects):
|
def set_link_objects (self, objects):
|
||||||
"""Set the list of object files (or analogues) to be included
|
"""Set the list of object files (or analogues) to be included in
|
||||||
in every link to 'objects'. This does not affect any
|
every link to 'objects'. This does not affect any standard object
|
||||||
standard object files that the linker may include by default
|
files that the linker may include by default (such as system
|
||||||
(such as system libraries)."""
|
libraries).
|
||||||
|
"""
|
||||||
self.objects = copy (objects)
|
self.objects = copy (objects)
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -271,15 +273,15 @@ class CCompiler:
|
||||||
# (here for the convenience of subclasses)
|
# (here for the convenience of subclasses)
|
||||||
|
|
||||||
def _fix_compile_args (self, output_dir, macros, include_dirs):
|
def _fix_compile_args (self, output_dir, macros, include_dirs):
|
||||||
"""Typecheck and fix-up some of the arguments to the 'compile()' method,
|
"""Typecheck and fix-up some of the arguments to the 'compile()'
|
||||||
and return fixed-up values. Specifically: if 'output_dir' is
|
method, and return fixed-up values. Specifically: if 'output_dir'
|
||||||
None, replaces it with 'self.output_dir'; ensures that 'macros'
|
is None, replaces it with 'self.output_dir'; ensures that 'macros'
|
||||||
is a list, and augments it with 'self.macros'; ensures that
|
is a list, and augments it with 'self.macros'; ensures that
|
||||||
'include_dirs' is a list, and augments it with
|
'include_dirs' is a list, and augments it with 'self.include_dirs'.
|
||||||
'self.include_dirs'. Guarantees that the returned values are of
|
Guarantees that the returned values are of the correct type,
|
||||||
the correct type, i.e. for 'output_dir' either string or None,
|
i.e. for 'output_dir' either string or None, and for 'macros' and
|
||||||
and for 'macros' and 'include_dirs' either list or None."""
|
'include_dirs' either list or None.
|
||||||
|
"""
|
||||||
if output_dir is None:
|
if output_dir is None:
|
||||||
output_dir = self.output_dir
|
output_dir = self.output_dir
|
||||||
elif type (output_dir) is not StringType:
|
elif type (output_dir) is not StringType:
|
||||||
|
|
@ -307,11 +309,11 @@ class CCompiler:
|
||||||
|
|
||||||
|
|
||||||
def _prep_compile (self, sources, output_dir):
|
def _prep_compile (self, sources, output_dir):
|
||||||
"""Determine the list of object files corresponding to 'sources', and
|
"""Determine the list of object files corresponding to 'sources',
|
||||||
figure out which ones really need to be recompiled. Return a list
|
and figure out which ones really need to be recompiled. Return a
|
||||||
of all object files and a dictionary telling which source files can
|
list of all object files and a dictionary telling which source
|
||||||
be skipped."""
|
files can be skipped.
|
||||||
|
"""
|
||||||
# Get the list of expected output (object) files
|
# Get the list of expected output (object) files
|
||||||
objects = self.object_filenames (sources,
|
objects = self.object_filenames (sources,
|
||||||
output_dir=output_dir)
|
output_dir=output_dir)
|
||||||
|
|
@ -330,8 +332,8 @@ class CCompiler:
|
||||||
skip_source[source] = 1
|
skip_source[source] = 1
|
||||||
|
|
||||||
(n_sources, n_objects) = newer_pairwise (sources, objects)
|
(n_sources, n_objects) = newer_pairwise (sources, objects)
|
||||||
for source in n_sources: # no really, only rebuild what's out-of-date
|
for source in n_sources: # no really, only rebuild what's
|
||||||
skip_source[source] = 0
|
skip_source[source] = 0 # out-of-date
|
||||||
|
|
||||||
return (objects, skip_source)
|
return (objects, skip_source)
|
||||||
|
|
||||||
|
|
@ -339,11 +341,11 @@ class CCompiler:
|
||||||
|
|
||||||
|
|
||||||
def _fix_object_args (self, objects, output_dir):
|
def _fix_object_args (self, objects, output_dir):
|
||||||
"""Typecheck and fix up some arguments supplied to various
|
"""Typecheck and fix up some arguments supplied to various methods.
|
||||||
methods. Specifically: ensure that 'objects' is a list; if
|
Specifically: ensure that 'objects' is a list; if output_dir is
|
||||||
output_dir is None, replace with self.output_dir. Return fixed
|
None, replace with self.output_dir. Return fixed versions of
|
||||||
versions of 'objects' and 'output_dir'."""
|
'objects' and 'output_dir'.
|
||||||
|
"""
|
||||||
if type (objects) not in (ListType, TupleType):
|
if type (objects) not in (ListType, TupleType):
|
||||||
raise TypeError, \
|
raise TypeError, \
|
||||||
"'objects' must be a list or tuple of strings"
|
"'objects' must be a list or tuple of strings"
|
||||||
|
|
@ -359,11 +361,11 @@ class CCompiler:
|
||||||
|
|
||||||
def _fix_lib_args (self, libraries, library_dirs, runtime_library_dirs):
|
def _fix_lib_args (self, libraries, library_dirs, runtime_library_dirs):
|
||||||
"""Typecheck and fix up some of the arguments supplied to the
|
"""Typecheck and fix up some of the arguments supplied to the
|
||||||
'link_*' methods. Specifically: ensure that all arguments are
|
'link_*' methods. Specifically: ensure that all arguments are
|
||||||
lists, and augment them with their permanent versions
|
lists, and augment them with their permanent versions
|
||||||
(eg. 'self.libraries' augments 'libraries'). Return a tuple
|
(eg. 'self.libraries' augments 'libraries'). Return a tuple with
|
||||||
with fixed versions of all arguments."""
|
fixed versions of all arguments.
|
||||||
|
"""
|
||||||
if libraries is None:
|
if libraries is None:
|
||||||
libraries = self.libraries
|
libraries = self.libraries
|
||||||
elif type (libraries) in (ListType, TupleType):
|
elif type (libraries) in (ListType, TupleType):
|
||||||
|
|
@ -396,9 +398,9 @@ class CCompiler:
|
||||||
|
|
||||||
|
|
||||||
def _need_link (self, objects, output_file):
|
def _need_link (self, objects, output_file):
|
||||||
"""Return true if we need to relink the files listed in 'objects' to
|
"""Return true if we need to relink the files listed in 'objects'
|
||||||
recreate 'output_file'."""
|
to recreate 'output_file'.
|
||||||
|
"""
|
||||||
if self.force:
|
if self.force:
|
||||||
return 1
|
return 1
|
||||||
else:
|
else:
|
||||||
|
|
@ -438,44 +440,44 @@ class CCompiler:
|
||||||
debug=0,
|
debug=0,
|
||||||
extra_preargs=None,
|
extra_preargs=None,
|
||||||
extra_postargs=None):
|
extra_postargs=None):
|
||||||
"""Compile one or more C/C++ source files. 'sources' must be
|
"""Compile one or more C/C++ source files. 'sources' must be a
|
||||||
a list of strings, each one the name of a C/C++ source
|
list of strings, each one the name of a C/C++ source file. Return
|
||||||
file. Return a list of object filenames, one per source
|
a list of object filenames, one per source filename in 'sources'.
|
||||||
filename in 'sources'. Depending on the implementation,
|
Depending on the implementation, not all source files will
|
||||||
not all source files will necessarily be compiled, but
|
necessarily be compiled, but all corresponding object filenames
|
||||||
all corresponding object filenames will be returned.
|
will be returned.
|
||||||
|
|
||||||
If 'output_dir' is given, object files will be put under it,
|
If 'output_dir' is given, object files will be put under it, while
|
||||||
while retaining their original path component. That is,
|
retaining their original path component. That is, "foo/bar.c"
|
||||||
"foo/bar.c" normally compiles to "foo/bar.o" (for a Unix
|
normally compiles to "foo/bar.o" (for a Unix implementation); if
|
||||||
implementation); if 'output_dir' is "build", then it would
|
'output_dir' is "build", then it would compile to
|
||||||
compile to "build/foo/bar.o".
|
"build/foo/bar.o".
|
||||||
|
|
||||||
'macros', if given, must be a list of macro definitions. A
|
'macros', if given, must be a list of macro definitions. A macro
|
||||||
macro definition is either a (name, value) 2-tuple or a (name,)
|
definition is either a (name, value) 2-tuple or a (name,) 1-tuple.
|
||||||
1-tuple. The former defines a macro; if the value is None, the
|
The former defines a macro; if the value is None, the macro is
|
||||||
macro is defined without an explicit value. The 1-tuple case
|
defined without an explicit value. The 1-tuple case undefines a
|
||||||
undefines a macro. Later definitions/redefinitions/
|
macro. Later definitions/redefinitions/ undefinitions take
|
||||||
undefinitions take precedence.
|
precedence.
|
||||||
|
|
||||||
'include_dirs', if given, must be a list of strings, the
|
'include_dirs', if given, must be a list of strings, the
|
||||||
directories to add to the default include file search path for
|
directories to add to the default include file search path for this
|
||||||
this compilation only.
|
compilation only.
|
||||||
|
|
||||||
'debug' is a boolean; if true, the compiler will be instructed
|
'debug' is a boolean; if true, the compiler will be instructed to
|
||||||
to output debug symbols in (or alongside) the object file(s).
|
output debug symbols in (or alongside) the object file(s).
|
||||||
|
|
||||||
'extra_preargs' and 'extra_postargs' are implementation-
|
'extra_preargs' and 'extra_postargs' are implementation- dependent.
|
||||||
dependent. On platforms that have the notion of a command-line
|
On platforms that have the notion of a command-line (e.g. Unix,
|
||||||
(e.g. Unix, DOS/Windows), they are most likely lists of strings:
|
DOS/Windows), they are most likely lists of strings: extra
|
||||||
extra command-line arguments to prepand/append to the compiler
|
command-line arguments to prepand/append to the compiler command
|
||||||
command line. On other platforms, consult the implementation
|
line. On other platforms, consult the implementation class
|
||||||
class documentation. In any event, they are intended as an
|
documentation. In any event, they are intended as an escape hatch
|
||||||
escape hatch for those occasions when the abstract compiler
|
for those occasions when the abstract compiler framework doesn't
|
||||||
framework doesn't cut the mustard.
|
cut the mustard.
|
||||||
|
|
||||||
Raises CompileError on failure."""
|
Raises CompileError on failure.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -484,25 +486,24 @@ class CCompiler:
|
||||||
output_libname,
|
output_libname,
|
||||||
output_dir=None,
|
output_dir=None,
|
||||||
debug=0):
|
debug=0):
|
||||||
"""Link a bunch of stuff together to create a static library
|
"""Link a bunch of stuff together to create a static library file.
|
||||||
file. The "bunch of stuff" consists of the list of object
|
The "bunch of stuff" consists of the list of object files supplied
|
||||||
files supplied as 'objects', the extra object files supplied
|
as 'objects', the extra object files supplied to
|
||||||
to 'add_link_object()' and/or 'set_link_objects()', the
|
'add_link_object()' and/or 'set_link_objects()', the libraries
|
||||||
libraries supplied to 'add_library()' and/or
|
supplied to 'add_library()' and/or 'set_libraries()', and the
|
||||||
'set_libraries()', and the libraries supplied as 'libraries'
|
libraries supplied as 'libraries' (if any).
|
||||||
(if any).
|
|
||||||
|
|
||||||
'output_libname' should be a library name, not a filename; the
|
'output_libname' should be a library name, not a filename; the
|
||||||
filename will be inferred from the library name. 'output_dir'
|
filename will be inferred from the library name. 'output_dir' is
|
||||||
is the directory where the library file will be put.
|
the directory where the library file will be put.
|
||||||
|
|
||||||
'debug' is a boolean; if true, debugging information will be
|
'debug' is a boolean; if true, debugging information will be
|
||||||
included in the library (note that on most platforms, it is the
|
included in the library (note that on most platforms, it is the
|
||||||
compile step where this matters: the 'debug' flag is included
|
compile step where this matters: the 'debug' flag is included here
|
||||||
here just for consistency).
|
just for consistency).
|
||||||
|
|
||||||
Raises LibError on failure."""
|
|
||||||
|
|
||||||
|
Raises LibError on failure.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -517,44 +518,44 @@ class CCompiler:
|
||||||
debug=0,
|
debug=0,
|
||||||
extra_preargs=None,
|
extra_preargs=None,
|
||||||
extra_postargs=None):
|
extra_postargs=None):
|
||||||
"""Link a bunch of stuff together to create a shared library
|
|
||||||
file. Similar semantics to 'create_static_lib()', with the
|
|
||||||
addition of other libraries to link against and directories to
|
|
||||||
search for them. Also, of course, the type and name of
|
|
||||||
the generated file will almost certainly be different, as will
|
|
||||||
the program used to create it.
|
|
||||||
|
|
||||||
'libraries' is a list of libraries to link against. These are
|
"""Link a bunch of stuff together to create a shared library file.
|
||||||
library names, not filenames, since they're translated into
|
Similar semantics to 'create_static_lib()', with the addition of
|
||||||
filenames in a platform-specific way (eg. "foo" becomes
|
other libraries to link against and directories to search for them.
|
||||||
"libfoo.a" on Unix and "foo.lib" on DOS/Windows). However, they
|
Also, of course, the type and name of the generated file will
|
||||||
can include a directory component, which means the linker will
|
almost certainly be different, as will the program used to create
|
||||||
look in that specific directory rather than searching all the
|
it.
|
||||||
normal locations.
|
|
||||||
|
|
||||||
'library_dirs', if supplied, should be a list of directories to
|
'libraries' is a list of libraries to link against. These are
|
||||||
search for libraries that were specified as bare library names
|
library names, not filenames, since they're translated into
|
||||||
(ie. no directory component). These are on top of the system
|
filenames in a platform-specific way (eg. "foo" becomes "libfoo.a"
|
||||||
default and those supplied to 'add_library_dir()' and/or
|
on Unix and "foo.lib" on DOS/Windows). However, they can include a
|
||||||
'set_library_dirs()'. 'runtime_library_dirs' is a list of
|
directory component, which means the linker will look in that
|
||||||
directories that will be embedded into the shared library and
|
specific directory rather than searching all the normal locations.
|
||||||
used to search for other shared libraries that *it* depends on
|
|
||||||
at run-time. (This may only be relevant on Unix.)
|
|
||||||
|
|
||||||
'export_symbols' is a list of symbols that the shared library
|
'library_dirs', if supplied, should be a list of directories to
|
||||||
will export. (This appears to be relevant only on Windows.)
|
search for libraries that were specified as bare library names
|
||||||
|
(ie. no directory component). These are on top of the system
|
||||||
|
default and those supplied to 'add_library_dir()' and/or
|
||||||
|
'set_library_dirs()'. 'runtime_library_dirs' is a list of
|
||||||
|
directories that will be embedded into the shared library and used
|
||||||
|
to search for other shared libraries that *it* depends on at
|
||||||
|
run-time. (This may only be relevant on Unix.)
|
||||||
|
|
||||||
'debug' is as for 'compile()' and 'create_static_lib()', with the
|
'export_symbols' is a list of symbols that the shared library will
|
||||||
slight distinction that it actually matters on most platforms
|
export. (This appears to be relevant only on Windows.)
|
||||||
(as opposed to 'create_static_lib()', which includes a 'debug'
|
|
||||||
flag mostly for form's sake).
|
|
||||||
|
|
||||||
'extra_preargs' and 'extra_postargs' are as for 'compile()'
|
'debug' is as for 'compile()' and 'create_static_lib()', with the
|
||||||
(except of course that they supply command-line arguments
|
slight distinction that it actually matters on most platforms (as
|
||||||
for the particular linker being used).
|
opposed to 'create_static_lib()', which includes a 'debug' flag
|
||||||
|
mostly for form's sake).
|
||||||
|
|
||||||
Raises LinkError on failure."""
|
'extra_preargs' and 'extra_postargs' are as for 'compile()' (except
|
||||||
|
of course that they supply command-line arguments for the
|
||||||
|
particular linker being used).
|
||||||
|
|
||||||
|
Raises LinkError on failure.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -569,14 +570,15 @@ class CCompiler:
|
||||||
debug=0,
|
debug=0,
|
||||||
extra_preargs=None,
|
extra_preargs=None,
|
||||||
extra_postargs=None):
|
extra_postargs=None):
|
||||||
"""Link a bunch of stuff together to create a shared object
|
"""Link a bunch of stuff together to create a shared object file.
|
||||||
file. Much like 'link_shared_lib()', except the output filename
|
Much like 'link_shared_lib()', except the output filename is
|
||||||
is explicitly supplied as 'output_filename'. If 'output_dir' is
|
explicitly supplied as 'output_filename'. If 'output_dir' is
|
||||||
supplied, 'output_filename' is relative to it
|
supplied, 'output_filename' is relative to it
|
||||||
(i.e. 'output_filename' can provide directory components if
|
(i.e. 'output_filename' can provide directory components if
|
||||||
needed).
|
needed).
|
||||||
|
|
||||||
Raises LinkError on failure."""
|
Raises LinkError on failure.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -591,12 +593,13 @@ class CCompiler:
|
||||||
extra_preargs=None,
|
extra_preargs=None,
|
||||||
extra_postargs=None):
|
extra_postargs=None):
|
||||||
"""Link a bunch of stuff together to create a binary executable
|
"""Link a bunch of stuff together to create a binary executable
|
||||||
file. The "bunch of stuff" is as for 'link_shared_lib()'.
|
file. The "bunch of stuff" is as for 'link_shared_lib()'.
|
||||||
'output_progname' should be the base name of the executable
|
'output_progname' should be the base name of the executable
|
||||||
program--e.g. on Unix the same as the output filename, but
|
program--e.g. on Unix the same as the output filename, but on
|
||||||
on DOS/Windows ".exe" will be appended.
|
DOS/Windows ".exe" will be appended.
|
||||||
|
|
||||||
Raises LinkError on failure."""
|
Raises LinkError on failure.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -607,24 +610,28 @@ class CCompiler:
|
||||||
# implement all of these.
|
# implement all of these.
|
||||||
|
|
||||||
def library_dir_option (self, dir):
|
def library_dir_option (self, dir):
|
||||||
"""Return the compiler option to add 'dir' to the list of directories
|
"""Return the compiler option to add 'dir' to the list of
|
||||||
searched for libraries."""
|
directories searched for libraries.
|
||||||
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
def runtime_library_dir_option (self, dir):
|
def runtime_library_dir_option (self, dir):
|
||||||
"""Return the compiler option to add 'dir' to the list of directories
|
"""Return the compiler option to add 'dir' to the list of
|
||||||
searched for runtime libraries."""
|
directories searched for runtime libraries.
|
||||||
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
def library_option (self, lib):
|
def library_option (self, lib):
|
||||||
"""Return the compiler option to add 'dir' to the list of libraries
|
"""Return the compiler option to add 'dir' to the list of libraries
|
||||||
linked into the shared library or executable."""
|
linked into the shared library or executable.
|
||||||
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
def find_library_file (self, dirs, lib):
|
def find_library_file (self, dirs, lib):
|
||||||
"""Search the specified list of directories for a static or shared
|
"""Search the specified list of directories for a static or shared
|
||||||
library file 'lib' and return the full path to that file. Return
|
library file 'lib' and return the full path to that file. Return
|
||||||
None if it wasn't found in any of the specified directories."""
|
None if it wasn't found in any of the specified directories.
|
||||||
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -776,18 +783,16 @@ def new_compiler (plat=None,
|
||||||
verbose=0,
|
verbose=0,
|
||||||
dry_run=0,
|
dry_run=0,
|
||||||
force=0):
|
force=0):
|
||||||
|
|
||||||
"""Generate an instance of some CCompiler subclass for the supplied
|
"""Generate an instance of some CCompiler subclass for the supplied
|
||||||
platform/compiler combination. 'plat' defaults to 'os.name'
|
platform/compiler combination. 'plat' defaults to 'os.name'
|
||||||
(eg. 'posix', 'nt'), and 'compiler' defaults to the default
|
(eg. 'posix', 'nt'), and 'compiler' defaults to the default compiler
|
||||||
compiler for that platform. Currently only 'posix' and 'nt'
|
for that platform. Currently only 'posix' and 'nt' are supported, and
|
||||||
are supported, and the default compilers are "traditional Unix
|
the default compilers are "traditional Unix interface" (UnixCCompiler
|
||||||
interface" (UnixCCompiler class) and Visual C++ (MSVCCompiler
|
class) and Visual C++ (MSVCCompiler class). Note that it's perfectly
|
||||||
class). Note that it's perfectly possible to ask for a Unix
|
possible to ask for a Unix compiler object under Windows, and a
|
||||||
compiler object under Windows, and a Microsoft compiler object
|
Microsoft compiler object under Unix -- if you supply a value for
|
||||||
under Unix -- if you supply a value for 'compiler', 'plat'
|
'compiler', 'plat' is ignored.
|
||||||
is ignored."""
|
"""
|
||||||
|
|
||||||
if plat is None:
|
if plat is None:
|
||||||
plat = os.name
|
plat = os.name
|
||||||
|
|
||||||
|
|
@ -820,15 +825,15 @@ def new_compiler (plat=None,
|
||||||
|
|
||||||
|
|
||||||
def gen_preprocess_options (macros, include_dirs):
|
def gen_preprocess_options (macros, include_dirs):
|
||||||
"""Generate C pre-processor options (-D, -U, -I) as used by at
|
"""Generate C pre-processor options (-D, -U, -I) as used by at least
|
||||||
least two types of compilers: the typical Unix compiler and Visual
|
two types of compilers: the typical Unix compiler and Visual C++.
|
||||||
C++. 'macros' is the usual thing, a list of 1- or 2-tuples, where
|
'macros' is the usual thing, a list of 1- or 2-tuples, where (name,)
|
||||||
(name,) means undefine (-U) macro 'name', and (name,value) means
|
means undefine (-U) macro 'name', and (name,value) means define (-D)
|
||||||
define (-D) macro 'name' to 'value'. 'include_dirs' is just a list of
|
macro 'name' to 'value'. 'include_dirs' is just a list of directory
|
||||||
directory names to be added to the header file search path (-I).
|
names to be added to the header file search path (-I). Returns a list
|
||||||
Returns a list of command-line options suitable for either
|
of command-line options suitable for either Unix compilers or Visual
|
||||||
Unix compilers or Visual C++."""
|
C++.
|
||||||
|
"""
|
||||||
# XXX it would be nice (mainly aesthetic, and so we don't generate
|
# XXX it would be nice (mainly aesthetic, and so we don't generate
|
||||||
# stupid-looking command lines) to go over 'macros' and eliminate
|
# stupid-looking command lines) to go over 'macros' and eliminate
|
||||||
# redundant definitions/undefinitions (ie. ensure that only the
|
# redundant definitions/undefinitions (ie. ensure that only the
|
||||||
|
|
@ -872,12 +877,11 @@ def gen_preprocess_options (macros, include_dirs):
|
||||||
|
|
||||||
def gen_lib_options (compiler, library_dirs, runtime_library_dirs, libraries):
|
def gen_lib_options (compiler, library_dirs, runtime_library_dirs, libraries):
|
||||||
"""Generate linker options for searching library directories and
|
"""Generate linker options for searching library directories and
|
||||||
linking with specific libraries. 'libraries' and 'library_dirs'
|
linking with specific libraries. 'libraries' and 'library_dirs' are,
|
||||||
are, respectively, lists of library names (not filenames!) and
|
respectively, lists of library names (not filenames!) and search
|
||||||
search directories. Returns a list of command-line options suitable
|
directories. Returns a list of command-line options suitable for use
|
||||||
for use with some compiler (depending on the two format strings
|
with some compiler (depending on the two format strings passed in).
|
||||||
passed in)."""
|
"""
|
||||||
|
|
||||||
lib_opts = []
|
lib_opts = []
|
||||||
|
|
||||||
for dir in library_dirs:
|
for dir in library_dirs:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue