debug=0,
extra_preargs=None,
extra_postargs=None):
-
"""Compile one or more source files. 'sources' must be a list of
filenames, most likely C/C++ files, but in reality anything that
can be handled by a particular compiler and compiler class
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
-
+ extra_postargs=None,
+ build_temp=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.
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
+ extra_postargs=None,
+ build_temp=None):
"""Link a bunch of stuff together to create a shared object file.
Much like 'link_shared_lib()', except the output filename is
explicitly supplied as 'output_filename'. If 'output_dir' is
"Cygwin port of GNU C Compiler for Win32"),
'mingw32': ('cygwinccompiler', 'Mingw32CCompiler',
"Mingw32 port of GNU C Compiler for Win32"),
+ 'bcpp': ('bcppcompiler', 'BCPPCompiler',
+ "Borland C++ Compiler"),
}
def show_compilers():
-"""distutils.ccompiler
+"""distutils.msvccompiler
Contains MSVCCompiler, an implementation of the abstract CCompiler class
for the Microsoft Visual Studio."""
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
+ extra_postargs=None,
+ build_temp=None):
self.link_shared_object (objects,
self.shared_library_name(output_libname),
export_symbols=export_symbols,
debug=debug,
extra_preargs=extra_preargs,
- extra_postargs=extra_postargs)
+ extra_postargs=extra_postargs,
+ build_temp=build_temp)
def link_shared_object (self,
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
+ extra_postargs=None,
+ build_temp=None):
(objects, output_dir) = self._fix_object_args (objects, output_dir)
(libraries, library_dirs, runtime_library_dirs) = \
static_lib_format = shared_lib_format = "lib%s%s"
+
def __init__ (self,
verbose=0,
dry_run=0,
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
+ extra_postargs=None,
+ build_temp=None):
+
self.link_shared_object (
objects,
self.shared_library_filename (output_libname),
export_symbols,
debug,
extra_preargs,
- extra_postargs)
+ extra_postargs,
+ build_temp)
def link_shared_object (self,
export_symbols=None,
debug=0,
extra_preargs=None,
- extra_postargs=None):
+ extra_postargs=None,
+ build_temp=None):
(objects, output_dir) = self._fix_object_args (objects, output_dir)
(libraries, library_dirs, runtime_library_dirs) = \