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.
1 parent 9da8052 commit 835349dCopy full SHA for 835349d
.ci/scripts/wheel/pre_build_script.sh
@@ -65,7 +65,15 @@ echo ">>> Extracting RPM with bsdtar"
65
bsdtar -C /tmp -xf /tmp/glibc.rpm
66
67
# Copy needed files from the extracted tree (not host system!)
68
-cp -av /tmp/lib64/libc.so.6 /tmp/lib64/ld-linux-x86-64.so.2 "$PREFIX/lib/" || true
+# Copy all runtime libs from extracted RPM
69
+cp -av /tmp/lib64/libc.so.6 \
70
+ /tmp/lib64/ld-linux-x86-64.so.2 \
71
+ /tmp/lib64/libdl.so.2 \
72
+ /tmp/lib64/libpthread.so.0 \
73
+ /tmp/lib64/librt.so.1 \
74
+ /tmp/lib64/libm.so.6 \
75
+ /tmp/lib64/libutil.so.1 \
76
+ "$PREFIX/lib/" || true
77
78
# Check what we staged
79
echo ">>> Contents staged in $PREFIX/lib"
0 commit comments