Reputation: 43518
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?
Upvotes: 0
Views: 693
Reputation: 4226
Looks like you used different stdc libs for compilation and runtime, check G++ always fails with undefined reference to _Unwind_GetIPInfo
Upvotes: 1