User`s guide

mcc
7-40
To include none of your M-code and no #line preprocessor directives, use
mcc -A annotation:none -A line:off
Toincludethestandard#line preprocessordirectivesinyourgeneratedC/C++
source code as well as source file and line number informationinyourrun-time
error messages, use
mcc -A line:on -A debugline:on …
-F <option> (Formatting). Control the formatting of the generated code. This table
shows the available options.
-g (Debug). Th is option is a m acro that is equiv alent to
-G -A debugline:on -O none
In addition tothe-G option, the -goptionincludesthe -A debugline:on option.
This will have an impact on performance of the generated code. If you wish to
have debugging information, but do not want the performance degradation
associated with the debug line information, use
-g -A debugline:off.The-g
option also includes the -O none option, causing all compiler optimizations to
be turned off. If you wish to have some optimizati ons on, you may specify them
after the debug option.
Table 7-7: Formatting Options
<Option> Description
list
Generat es a table of all the available formatting
options.
expression-indent:n
Sets the numb er of spaces of indentation for all
expressions to
n,wheren is an integer. The
defaultindentis4.
page-width:n
Sets maximum width of generated code to n,
where
n is an integer. The default width is 80.
statement-indent:n
Sets the number of spaces of indentation for all
statements to
n,wheren is an integer. The
defaultindentis2.