Contents | Prev | Next
5.1.2.2.4 -b Use brief messages
This command-line compiler option enables/disables the brief format for messages.
Syntax: -b[+|-]
Default: Disabled
Notes:
The verbose format for Fatal error and Error messages (which is used by default) is
Error #nn: "name" (Line l, Col c): text
where
- nn is a number identifying the message
- name is the file where the problem as detected
- l is the line where the problem was detected
- c is the column where the problem was detected
- text is the text of the message
The verbose format for warning messages is similar except that Warning is used
instead of Error.
The brief format for Fatal error and Error messages is:
Enn: "name" l:text
where
- nn is a number identifying the message
- name is the file where the problem as detected
- l is the line number of the line where the problem was detected
- text is the text of the message
The brief format for warning messages are similar except that W is used instead
of E.
Contents | Prev | Next