|
|
insure++.compiler_default cpp
insure++.stack_internal on
# => Recommended when 'symbol_table off' or 'trace on'. See runtime options.
insure++.malloc_replace off
# => Use standard libraries for dynamic memory allocation.
#
### Runtime options
#
insure++.symbol_table off
insure++.stack_internal on
#WILL IT WORK???
# => Trace will show only functions compiled with Insight. Less memory use and# much faster startup.
# Set 'stack_internal on' during compiling.
insure++.trace off
#trace on
# => To get filenames and line numbers in trace. Requires
# 'stack_internal on' during compilation.
# trace off => Removes tons of useless-looking 'malloc' messages
# during execution. Summary report looks OK. Other effects?
insure++.realloc_stress off
#=> Make things go much faster.
insure++.ignore_wild off
# ignore_wild off => Turns _on_ wild pointer checking.
#insure++.signal_ignore 11
# signal_ignore 11 => To ignore Unix signal 11.
#
### Compile and runtime options
#
insure++.checking_uninit off
#
### Location of error report
#
insure++.compile.report_file stderr
# compile.report_file stderr => Compile time errors go to stderr.
#insure++.runtime.report_file stderr
# runtime.report_file stderr => Run time errors go to stderr.
insure++.runtime.report_file %v-errs.%D
# runtime.report_file %v-errs.%D => Run time errors go to file
# -errs.
#insure++.report_file stderr
# report_file %v-errs.%D => Compile and run time errors go to stderr.
#insure++.report_file insra
# report_file insra => Compile and run time errors go to the
# Insra, the report analyzer with a graphical interface.
#
### Things to include in the report
#
insure++.summarize bugs leaks outstanding
insure++.summarize detailed leaks
insure++.suppress_warning 13-1
insure++.report_file insra
[Top of the Page]
|
|