...
Without Insure++ | With Insure++ |
---|---|
gcc -c foo.c | insure gcc -c foo.c |
g++ -c bar.cc | insure g++ -c bar.cc |
/usr/local/gcc-3.4.0/bin/g++ -c g bar.cc -o bar | insure /usr/local/gcc-3.4.0/bin/g++ -o g bar foo.cc -o bar.o |
You can use the same options that you normally use to compile and link your program. For example, you would use the following command to to build bubble1.c
:
...
If you have a makefile that uses the variable CC to define the compiler name, you can build your program with Insure++ by using the command make CC=’insure . cc’
.
Insure Command Line Options
...