"James" <[EMAIL PROTECTED]> writes:

> It's complainig about "wrong ELF class".

That means that dynamic loader found only 32-bit libraries, but
needs 64-bit ones.

> How do I fix it?

Set your LD_LIBRARY_PATH correctly. Probably:

LD_LIBRARY_PATH=/usr/local/lib/sparcv9 ldd a.out

If that doesn't work, try searching for 64-bit libstdc++.so.6
like this:

  cd /usr/local/lib &&
  find . -name libstdc++.so.6 | xargs file | grep SPARCV9

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.
_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to