Home | Trees | Indices | Help |
---|
|
Compiler --+ | GCC
A 'GCC' is a GNU Compiler Collection compiler.
|
|||
|
|||
Inherited from Inherited from |
|
|||
_severities = ['warning', 'error'] The diagnostic severities generated by the compiler. |
|||
_severity_regexps = {'warning': re.compile('^(?P<file>[^:]*):( A map from severities to compiled regular expressions. |
|||
_internal_error_regexp = re.compile('Internal (compiler )?error') A compiled regular expression. |
|||
MODE_PRECOMPILE = "precompile" Precompile a header file. |
|||
modes = Compiler.modes+ [MODE_PRECOMPILE] The available compilation modes. |
|||
Inherited from |
|
Return the 'Diagnostic's indicated in the 'output'. 'output' -- A string giving the output from the compiler. 'ignore_regexps' -- A sequence of regular expressions. If a diagnostic message matches one of these regular expressions, it will be ignored. returns -- A list of 'Diagnostic's corresponding to the messages indicated in 'output', in the order that they were emitted.
|
|
_severitiesThe diagnostic severities generated by the compiler. Order matters; the order given here is the order that the '_severity_regexps' will be tried.
|
_severity_regexpsA map from severities to compiled regular expressions. If the regular expression matches a line in the compiler output, then that line indicates a diagnostic with the indicated severity.
|
_internal_error_regexpA compiled regular expression. When an error message is matched by this regular expression, the error message indicates an internal error in the compiler.
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:41 2011 | http://epydoc.sourceforge.net |