Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

Deprecated options from Insure++ 7.1.X

LegacyForum
LegacyForum Posts: 1,664 ✭✭
edited December 2016 in Insure++
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