We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/usr/local/lib64
1 parent 75a492f commit ff181ceCopy full SHA for ff181ce
docker/build_scripts/install-runtime-packages.sh
@@ -162,7 +162,12 @@ if [ "${BASE_POLICY}" == "manylinux" ]; then
162
# this is needed to ensure the new one will be found
163
# as LD_LIBRARY_PATH does not seem enough.
164
# c.f. https://github.com/pypa/manylinux/issues/1022
165
+ # we also want to keep those standard build directories searched by ld
166
+ # c.f. https://github.com/pypa/manylinux/issues/1886
167
echo "/usr/local/lib" > /etc/ld.so.conf.d/00-manylinux.conf
168
+ if [ -d "/usr/local/lib64" ]; then
169
+ echo "/usr/local/lib64" >> /etc/ld.so.conf.d/00-manylinux.conf
170
+ fi
171
ldconfig
172
else
173
# set the default shell to bash
0 commit comments