5 ms·
> Which would work if licenses and copyrights didn't exist. I don't think it would. Dynamic linking allows a library to be patched once and have the patch app
by chainsaw10 9y ago
> Which would work if licenses and copyrights didn't exist.
I don't think it would.
Dynamic linking allows a library to be patched once and have the patch apply to all the programs using it. If every program was statically linked, you would have to update each one individually.
Not to mention the waste of space.
I'm guessing much of that is moot these days, but IMHO it's still something to aim for.
- digi_owl 9y agoI think GP is being snarky/sarcastic.
- isostatic 9y agoPatch a library and perhaps you end up breaking some programs that rely on that library. The benefit of that goes away with containers anyway, you don't share libraries, every instance gets its own install.
- digi_owl 9y agoCould have sworn that _nix already had mechanisms for loading different lib versions side by side...