|
|
|
|
|
by xg15
3241 days ago
|
|
> Shared libraries beyond that would bring the hell of version incompatibility This is more a general question but I've never understand why so many shared library systems have the restriction of "only one version of a library". What stops you from storing different versions of the same library for different apps? (I understand the problem with transitive dependencies - e.g. if the same app transitively depends on two different versions of a library, that might spell trouble. Even for this there are solutions - e.g. different classloaders for the jvm - but even without, you could disallow this special case witout sacrifying much) |
|
Edit: in other words, common data.