...
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++ -g bar.cc -o bar | insure /usr/local/gcc-3.4.0/bin/g++ -g bar.cc -g o bar |
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
:
...