| |||
| Home > Standard C Implementation Definition > Implementation definition > Translation | |||
Diagnostic messages (see Diagnostic messages) produced by the compiler are of the form:
source-file,line-number:severity:error-code:explanation
where is
one of:severity
If
the severity is blank, this is a remark and indicates common, but sometimes
unconventional, use of C or C++. Remarks are not displayed by default.
Use the --remarks option to display remark messages
(see Controlling the output
of diagnostic messages). Compilation
continues.
WarningIndicates unusual conditions in your code that might indicate a problem. Compilation continues.
ErrorIndicates a problem that causes the compilation to stop. For example, violations in the syntactic or semantic rules of the C or C++ language.
Internal ErrorIndicates an internal problem with the compiler. Contact your supplier with the details listed in Feedback on RealView Developer Kit.
Here:
error-codeIs a number identifying the error type.
explanationIs a text description of the
error.