Hi, all.
When linking my application, I get the following error:
/fwh.2012.04/lib/fivehgc.lib(ACTX.o):ACTX.CPP:(.text+0xe08): undefined reference to `_Unwind_Resume'
/fwh.2012.04/lib/fivehgc.lib(ACTX.o):ACTX.CPP:(.eh_frame+0x2b7): undefined reference to `__gxx_personality_v0'
I recently upgraded to the nightly build of Harbour (3.2.0dev r1608101712), which resulted in this error. I am linking FWH 2012-04 build. Is there a lib binary for the latest Harbour/MinGW? Should I upgrade to latest FWH?
Thanks
FiveHGC.lib - Undefined reference ot _Unwind_Resume
Re: FiveHGC.lib - Undefined reference ot _Unwind_Resume
João Santos - São Paulo - Brasil
Re: FiveHGC.lib - Undefined reference ot _Unwind_Resume
After updating Harbour with the nightly build and a day of walking in circles without getting anywhere seeking the solution to this problem, I finally figure out that MinGW GCC have 3 different "Exception handling" systems: SJLJ, DWARF, and SEH.
Harbour nightly build was using SJLJ version:
and DWARF one was needed.
In my case I looked for the very same version:
https://sourceforge.net/projects/mingw- ... six/dwarf/
[[]] Maurício Faria
Harbour nightly build was using SJLJ version:
Code: Select all
gcc --version
gcc (i686-posix-sjlj-rev0, Built by MinGW-W64 project) 5.3.0
Copyright (C) 2015 Free Software Foundation, Inc.
In my case I looked for the very same version:
https://sourceforge.net/projects/mingw- ... six/dwarf/
Code: Select all
gcc --version
gcc (i686-posix-dwarf-rev0, Built by MinGW-W64 project) 5.3.0
Copyright (C) 2015 Free Software Foundation, Inc.