Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Without Insure++With Insure++
gcc -c foo.cinsure gcc -c foo.c
g++ -c bar.ccinsure g++ -c bar.cc
/usr/local/gcc-3.4.0/bin/g++ -g bar.cc -o barinsure /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:

...