I have a C++ project in Eclipse Juno (Service Release 2) on Linux.
I need to reference a third party library, but its name includes the library's version:
libThirdParty.so.10.1
I tried following this post. But it seems I have an old version of ld, and it doesn't work. (I checked the man page)
I tried using the library's full name (path/name) but I don't know where to add it because it is not working.
I can not create a symbolic link of the library without the version.
In eclipse, Where should I reference the full library name? Is there another way to reference the library?