|
|
|
|
|
by Supermighty
4421 days ago
|
|
There is no linking. Each Go binary has all of the libraries it needs baked into it. So if you have multiple different Go applications on one server, and they use some of the same libraries, then each application's binary will contain a copy of that library. It makes things a little redundant, but also simplifies the deployment process. edit: The only exception is if you are using cgo and liking to existing C libraries. In pure Go there is no linking. |
|