Can two different versions of the same libs (with same name) exists in an application?
- by Jay
I have some scenario like this:
Product- Platform- mylibs(version-1)
Product- mylibs(version-2)
i.e Product uses mylibs (version-2) directly. Product also uses platform (which is also a dynamic lib) and platform uses my libs (version-1).
The names of the libs used by product and platform are same. Only versions are different and both these versions are not compatible.
Is there a way with ".so" libs in linux that Platform can link to one version and product can link to another version of the same libs having the same name?