about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-11-02 15:19:15 +0000
committerbors <bors@rust-lang.org>2021-11-02 15:19:15 +0000
commit18bc4bee9710b181b440a472635150f0d6257713 (patch)
tree505db2277adc9d651955f2bc0622747745d9a07c /src/ci/docker/scripts
parentc3190c1eb4c982b1d419ae0632bad07a3b306b48 (diff)
parentee3b46689b64f5428b95769cd6d770ff9821690a (diff)
downloadrust-18bc4bee9710b181b440a472635150f0d6257713.tar.gz
rust-18bc4bee9710b181b440a472635150f0d6257713.zip
Auto merge of #90495 - lnicola:freebsd-kvm, r=Mark-Simulacrum
Pull in `libkvm` on FreeBSD

This is needed when updating `libc` after https://github.com/rust-lang/libc/pull/2451.

Spotted in #90464 where it caused `rust-analyzer` to fail to link.

Similar to #88676.
Diffstat (limited to 'src/ci/docker/scripts')
-rwxr-xr-xsrc/ci/docker/scripts/freebsd-toolchain.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/scripts/freebsd-toolchain.sh b/src/ci/docker/scripts/freebsd-toolchain.sh
index 70c57e07fde..de6b52a5e00 100755
--- a/src/ci/docker/scripts/freebsd-toolchain.sh
+++ b/src/ci/docker/scripts/freebsd-toolchain.sh
@@ -53,7 +53,7 @@ files_to_extract=(
 for lib in c cxxrt gcc_s m thr util; do
   files_to_extract=("${files_to_extract[@]}" "./lib/lib${lib}.*" "./usr/lib/lib${lib}.*")
 done
-for lib in c++ c_nonshared compiler_rt execinfo gcc pthread rt ssp_nonshared procstat; do
+for lib in c++ c_nonshared compiler_rt execinfo gcc pthread rt ssp_nonshared procstat kvm; do
   files_to_extract=("${files_to_extract[@]}" "./usr/lib/lib${lib}.*")
 done