From 6df758a249b3a330fd6cb77f1ee426a8baf8fb71 Mon Sep 17 00:00:00 2001 From: Ondrej Perutka Date: Fri, 18 Dec 2020 11:51:35 +0100 Subject: Fix missing dl lib on armv5te-unknown-linux-uclibceabi --- src/unix/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unix/mod.rs') diff --git a/src/unix/mod.rs b/src/unix/mod.rs index 21439c8a49..6b6af9d0e3 100644 --- a/src/unix/mod.rs +++ b/src/unix/mod.rs @@ -299,7 +299,7 @@ cfg_if! { // cargo build, don't pull in anything extra as the libstd dep // already pulls in all libs. } else if #[cfg(all(target_os = "linux", - target_env = "gnu", + any(target_env = "gnu", target_env = "uclibc"), feature = "rustc-dep-of-std"))] { #[link(name = "util", kind = "static-nobundle", cfg(target_feature = "crt-static"))] -- cgit v1.2.1