C Code Review Linker - crcld
The C Code Review Linker links and analyses the files produced by the C Code Review Compiler (crccc) for code review static analysis. It produces a .crc code review file that can be displayed in Test RealTime.
crcld <xob>[ <xob>] -CRC=<output> [<options>]
where:
<xob> is the name of the object file generated by the Code Review Compiler.
<output> is the generated .crc code review report file.
The C Code Review Compiler fits into your compilation sequence with minimal changes.
Command line options can be abbreviated to their shortest unambiguous number of characters and are not case-sensitive.
[-RULE=<file>]
Specifies the code review rule configuration file. By default, a default internal configuration rule set is used
[-TEST]
Disables the verification of undefined symbols and the detection of functions that are not called.
crcld object.xob main.xob -crc=main.crc
Related Topics
Code review overview | Running a code review | C Code Review Compiler - crccc