On 01/27/2008 08:28 AM, Spiros Spirou wrote:
OK, here's what I got:
/opt/local/bin/i386-apple-darwin8.11.1-gcc-4.2.2 -o .libs/
(...)
/usr/bin/ld: Undefined symbols: __Unwind_Resume collect2: ld returned 1 exit status
It just occurred to me that the gcc binary is being used to link the library, not g++! That's probably the reason of all these undefined references... In your first message, I saw you ran configure with CXX=/opt/local/bin/i386-apple-darwin8.11.1-gcc-4.2.2. This is incorrect. You needed to do something like CXX=/opt/local/bin/i386-apple-darwin8.11.1-g++-4.2.2, assuming that's what g++ is called on your system. Please try a whole build from scratch, using g++ this time, and see if you still encounter any problems. Cheers, Tiago -- Tiago de Paula Peixoto <tiago@forked.de>