Miro Kropacek a écrit :
Any ideas how to discover more?
First try this (you said it works). $ gcc -print-file-name=libgcc.a Then use nm to see if that libgcc.a contains the expected symbols. $ nm .../libgcc.aI got a similar problem recently with with different stuff. One library was present, but it was compiled natively instead of cross-compiled. So the cross-linker vas seeing the library, but not the symbols. This probably not the same problem, but who knows...
-- Vincent Rivière