Domanda

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?

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top