-
Notifications
You must be signed in to change notification settings - Fork 219
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
manylinux2010: Install libxcrypt #325
Conversation
When I tested the
GCC:
It is supposed to compile with GCC 9 so not sure if it's this particular GCC version or something else. |
Upstream libxcrypt uses extremely paranoid warnings settings for development, but unfortunately that means it's sensitive to the exact compiler version in use. For installation into manylinux I recommend configuring with |
201440b
to
c4b5e23
Compare
Successfully tested this with
|
Don't forget to remove the tarball from this PR too. |
This will make `libcrypt.so.2` available in the image. The GLIBC variants of the header and libraries are deleted in order to force applications to pick up the `libxcrypt` version.
c4b5e23
to
28f7ee4
Compare
Looks like I forgot to push the change to remove the tarball. Updated the PR. |
This will make
libcrypt.so.2
available in the image. The GLIBC variants of the header and libraries are deleted in order to force applications to pick up thelibxcrypt
version.See #305.