When cross compiling certain projects (esp ones that use libtool to setup the build) as shared libraries for unix based systems, the output is usually a *.so.x.y.z file with all the versioning information standard for shared libraries.
Unfortunately a couple platforms, specifically BlackBerry and Android, don't play nice with soname versioning and symlinks in application packages.
Ideally you'd be able to tell the build tools to build shared libraries without versioning, but I've found this to be a pretty difficult and time consuming task. For some projects, I was unable to figure how to prevent versioning at all. Playing around with variables in project build scripts might also silently break something or bring about unexpected behavior.
Is there a way to get rid of all the versioning information for a set of shared object binaries after they've been built?