Вопрос

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