about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorBen Kimock <kimockb@gmail.com>2025-01-25 06:05:36 +0000
committerGitHub <noreply@github.com>2025-01-25 06:05:36 +0000
commit57eabac8351013154cef7bac0f27759094ff5a96 (patch)
tree6a131fb160b1ad071bb1a0c30add05ae64b48ebd /src/ci/docker/scripts
parentf8f5c9d64297f34a260abd882f752153e85102f3 (diff)
parentc9502079ed12d35de139416cd8e67e43b0b5bfd8 (diff)
downloadrust-57eabac8351013154cef7bac0f27759094ff5a96.tar.gz
rust-57eabac8351013154cef7bac0f27759094ff5a96.zip
Merge pull request #4150 from rust-lang/rustup-2025-01-25
Automatic Rustup
Diffstat (limited to 'src/ci/docker/scripts')
-rwxr-xr-xsrc/ci/docker/scripts/build-zstd.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ci/docker/scripts/build-zstd.sh b/src/ci/docker/scripts/build-zstd.sh
index a3d37ccc311..cffa7151e38 100755
--- a/src/ci/docker/scripts/build-zstd.sh
+++ b/src/ci/docker/scripts/build-zstd.sh
@@ -25,5 +25,11 @@ cd zstd-$ZSTD
 CFLAGS=-fPIC hide_output make -j$(nproc) VERBOSE=1
 hide_output make install
 
+# It doesn't seem to be possible to move destination directory
+# of the `make install` above. We thus copy the built artifacts
+# manually to our custom rustroot, so that it can be found through
+# LD_LIBRARY_PATH.
+cp /usr/local/lib/libzstd* /rustroot/lib64
+
 cd ..
 rm -rf zstd-$ZSTD