|
|
|
|
|
by thwest
4795 days ago
|
|
Difficult, but not really a significant part of the challenges for delivering closed source binaries across platforms. On linux, you have to build distribution specific binaries that match the shared library versions in the package manager. On Windows, you generally put all of your shared libraries in your application's folder, since there are plenty of bad actors who install DLLs without versions in the filename to system32. Leads to duplication on the system but its a generally accepted bad practice. (Can't speak to shipping LGPL libs on OS X). |
|