This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: linker error on shared object: sleep: invalid version 3 (max 0)
- From: Ian Lance Taylor <iant at google dot com>
- To: ad_101 at yahoo dot com
- Cc: GCC Help <gcc-help at gcc dot gnu dot org>
- Date: Thu, 02 Jul 2009 15:10:53 -0700
- Subject: Re: linker error on shared object: sleep: invalid version 3 (max 0)
- References: <545425.38524.qm@web32605.mail.mud.yahoo.com>
Amitava Dutta <ad_101@yahoo.com> writes:
> /usr/local/bin/ld: ./bin/../sobin/libgs.so: sleep: invalid version 3 (max 0)
> ./bin/../sobin/libgs.so: could not read symbols: Bad value
This is actually a GNU linker issue, not a gcc issue. You may have
better luck asking on binutils@sourceware.org. See
http://sourceware.org/binutils/ for more information.
The error message means that a symbol had version index 3, but there
were no defined versions. Or something like that. I don't know how
that could happen, given that the file was built using the GNU linker.
Ian