-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binary Compatibility and dynamically linked libraries #537
Comments
The problem with CentOS seems to be
I guess in the Linux world it's a religious question whether dynamic or static linking is preferred, but for ease of deployment, I would like to reduce the number of dynamically linked libraries as much as possible. We could even get rid of |
musl has performance issues: Dynamically linked libraries have benefits, e.g., you get security updates for free. |
Disadvantages of statically linked libraries:
|
Question is: why do you need |
Looks like
|
Oh hey, thanks for investigating. I had no time looking at this before. And yeah, looks like Unfortunately, that doesn't really help as Oh and for reference:
Seems like all other dynamically linked libaries are not "caused" by any dependencies, but are standard links for |
Or just build different binaries for different platforms. That's probably the easiest and also fastest way forward. |
We should probably investigate why this doesn't work. This could cause a few headaches:
The text was updated successfully, but these errors were encountered: