module documentation

unixccompiler - can handle very long argument lists for ar.

Function UnixCCompiler__compile Compile a single source files with a Unix-style compiler.
Function UnixCCompiler_create_static_lib Build a static library in a separate sub-process.
def UnixCCompiler__compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): (source)

Compile a single source files with a Unix-style compiler.

def UnixCCompiler_create_static_lib(self, objects, output_libname, output_dir=None, debug=0, target_lang=None): (source)

Build a static library in a separate sub-process.

Parameters
selfUndocumented
objects:list or tuple of strList of paths to object files used to build the static library.
output_libname:strThe library name as an absolute or relative (if output_dir is used) path.
output_dir:str, optionalThe path to the output directory. Default is None, in which case the output_dir attribute of the UnixCCompiler instance.
debug:bool, optionalThis parameter is not used.
target_lang:str, optionalThis parameter is not used.
Returns
NoneUndocumented