SPRU513Z August 2001 – October 2023 SM320F28335-EP
The --no_symtable option creates a smaller output module by omitting symbol table information and line number entries. The --no_sym_table option is useful for production applications when you do not want to disclose symbolic information to the consumer.
This example links file1.c.obj and file2.c.obj and creates an output module, stripped of line numbers and symbol table information, named nosym.out:
cl2000 --run_linker --output_file=nosym.out --no_symtable file1.c.obj file2.c.obj
Using the --no_symtable option limits later use of a symbolic debugger.
The --no_symtable option is deprecated. To remove symbol table information, use the strip2000 utility as described in Section 11.4.