When trying to switch to gcc 4.6.2 in qt (setting it in a toolchain) I'm getting the following error:
c:\ndk_buildrepos\qt-desktop\src\winmain\qtmain_win.cpp:93: error: undefined reference to `_Unwind_Resume'
Any idea how to fix it?
//.pro
QMAKE_CXXFLAGS += -std=c++0x
SOURCES += \
main.cpp
Undefined references to _Unwind_Resume are caused by compiling with a GCC with a different stack unwinding method from that used by the library you're trying to link with.
As stated above, the solution is to rebuild the library with the same compiler. Just noting the cause for future google visitors.
... "_Unwind_Resume ..." ...
My Solution (simple, very simple)
I did a hit of make again.. it runs..:)
p.s. it solves my problem.:) I hope it can solve yours too.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With