Deprecated options from Insure++ 7.1.X
The following options have been deprecated beginning with Insure++ version 7.1:
Insure++.compiler_c
Insure++.compiler_cpp
Insure++.compiler_default
These options have caused much confusion. Instead, the recommended way of invoking Insure++ instrumentation is to simply prepend "insure", to the front of your command line.
For example, if your normal command line is:
CC -g foo.C -o foo
Then to invoke Insure++ just do:
insure CC -g foo.C -o foo
This makes it very easy to use insure++ with Makefiles. If you normally run make like this:
make all
Then to use Insure++ all you really need to do is, (for example):
make CC='insure cc' CXX='insure g++' all
--Rich
Insure++.compiler_c
Insure++.compiler_cpp
Insure++.compiler_default
These options have caused much confusion. Instead, the recommended way of invoking Insure++ instrumentation is to simply prepend "insure", to the front of your command line.
For example, if your normal command line is:
CC -g foo.C -o foo
Then to invoke Insure++ just do:
insure CC -g foo.C -o foo
This makes it very easy to use insure++ with Makefiles. If you normally run make like this:
make all
Then to use Insure++ all you really need to do is, (for example):
make CC='insure cc' CXX='insure g++' all
--Rich
Tagged:
0