Question

I m developing unit test using cppunit.

I build and installed cppunit library then I build and install my unit test binary.

And when I launch the unit test binary I get the following error:

 can't resolve symbol '_Unwind_GetIPInfo' in lib '/usr/lib/libstdc++.so.6'.

This error is generated only if the test will return failure. If the test reurn OK I did not got this error

Any idea about this error?

Was it helpful?

Solution

Looks like you used different stdc libs for compilation and runtime, check G++ always fails with undefined reference to _Unwind_GetIPInfo

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top