Home | History | Annotate | Download | only in distutils

Lines Matching refs:CCompiler

1 """distutils.ccompiler
3 Contains CCompiler, an abstract base class that defines the interface
23 class CCompiler:
40 # 'isinstance'. In concrete CCompiler subclasses, 'compiler_type'
147 # Note that some CCompiler implementation classes will define class
674 self.link(CCompiler.SHARED_LIBRARY, objects,
687 self.link(CCompiler.SHARED_OBJECT, objects,
697 self.link(CCompiler.EXECUTABLE, objects,
884 # class CCompiler
965 """Generate an instance of some CCompiler subclass for the supplied
1028 # CCompiler, since the data structures used are inherited from it
1029 # and therefore common to all CCompiler classes.