SPRUIG8J January 2018 – March 2024
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:
cl7x --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.