Search Results

1
vote

Using GCC from within VS 2005(8) IDE

There are certainly ways to do this -- this is how we develop for the PS3 with sony's toolchain (which is based on gcc). I don't know exactly how that works, but it integrates pretty seamlessly int …
2
votes

Where is the gcov symbols?

I just spent an incredible amount of time debugging a very similar error. Here's what I learned: You have to pass -fprofile-arcs -ftest-coverage when compiling. You have to p …