We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, Linux packages are built against either glibc or musl libc libraries.
Building statically against the libc library would have two main benefits:
Starting point: https://wiki.python.org/moin/BuildStatically.
Other pointers:
The text was updated successfully, but these errors were encountered:
I am not sure if having static glibc on Alpine / musl does not defeat the purpose of having a musl based environment in the first place.
Also... we need to see the depenencies between linux kernels and glibc / musl versions
Sorry, something went wrong.
A more powerful way, which would also enable easy cross-compiling: https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
Was actually thinking of building statically against musl, which seems to be more straightforward. Building statically against glibc is frown upon, I remember this: https://stackoverflow.com/questions/57476533/why-is-statically-linking-glibc-discouraged
dumol
No branches or pull requests
Currently, Linux packages are built against either glibc or musl libc libraries.
Building statically against the libc library would have two main benefits:
Starting point: https://wiki.python.org/moin/BuildStatically.
Other pointers:
The text was updated successfully, but these errors were encountered: