User`s guide

mcc
7-37
Table 7-7, Run-Time Error Annotation Options, shows the available debugline
directive settings.
For example, to include all of your M-code, including comments, in the
generated file and the standard #line preprocessor directives, use
mcc -A annotation:all -A line:on
or
mcc -A line:on (The default is all for code/comment inclusion.)
To include none of your M-code and no
#line preprocessor directives, use
mcc -A annotation:none -A line:off
To include the standard #line preprocessor directives in your generated C/C++
source code as well as source file and line number information in your run-time
error messages, use
mcc -A line:on -A debugline:on
-F <option> (Formatting).
Control the formatting of the generated code. Table 7-8,
Formatting Options, shows the available options.
Table 7-7: Run-Time Error Annotation Options
Setting Description
on
Specifies the presence of source file and line number
information in run-time error messages.
off
Specifies no source file and line number information in
run-time error messages. The default is
off.
Table 7-8: Formatting Options
<Option> Description
list
Generates a table of all the available formatting
options.
expression-indent:n
Sets the number of spaces of indentation for all
expressions to
n, where n is an integer. The
default indent is 4.