Compiling your C program with the #pragma statement
The TEST/NOTEST
compiler option can be specified
either when you compile your program or directly in your program,
using a #pragma
.
This #pragma
must appear before any executable
code in your program.
The following example generates symbol table information, symbol
information for nested blocks, and hooks at line numbers:
#pragma options (test(SYM,BLOCK,LINE))
This is equivalent to TEST(SYM,BLOCK,LINE,PATH)
. You can also use a #pragma
to specify runtime
options.