48
is there something about rust which precludes copyleft licensing?
(programming.dev)
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Community icon from opensource.org, but we are not affiliated with them.
To add a couple of issues with Dynamic Libraries, and why someone would choose Static Libraries:
Like a lot of things, there are tradeoffs, and there is no universal correct choice.
Agreed. I wasn't trying to say they are always better just explain the difference.
I almost exclusivity use Linux and it handles this great. .so libraries are stored with a version number and a link to the latest. So math3.so and math4.so with math.so being a link to math4.so. that way if needed I can set a program to use math3.so and keep everything else on the latest version.