문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top