Syntax

-Kname

Description

The CrossWorks linker removes unused code and data from the output file. This process is called deadstripping. To prevent the linker from deadstripping unreferenced code and data you wish to keep, you must use the -K command line option to force inclusion of symbols.

Example

If you have a C function, contextSwitch that must be kept in the output file (and which the linker will normally remove), you can force its inclusion using:

-K_contextSwitch 

Because -K is passed to the linker as an option, you must prefix the C function or variable name with an underscore as the CrossWorks C compiler prefixes all external symbols with an underscore when constructing linker symbols.