5.1.2.2.3 -A* Enable Asserts
This command-line compiler option enables/disables asserts.
Syntax: -A[+|-]
Default: Enabled
Notes: See also enable asserts.
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.
5.1.2.2.5 -C Identifiers are case-sensitive
This command-line compiler option enables/disables case-sensitive identifiers.
Syntax: -C[+|-]
Default: Disabled
Notes: See also make identifiers case-sensitive.