Skip to content

Commit 5eba141

Browse files
committed
Presence of libraries does not depend on architecture
1 parent 470b62f commit 5eba141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn main() {
3030
println!("cargo:rustc-link-lib=dl");
3131
println!("cargo:rustc-link-lib=log");
3232
println!("cargo:rustc-link-lib=gcc");
33-
} else if !target.contains("musl") || target.contains("mips") {
33+
} else if !target.contains("musl") {
3434
println!("cargo:rustc-link-lib=dl");
3535
println!("cargo:rustc-link-lib=rt");
3636
println!("cargo:rustc-link-lib=pthread");

0 commit comments

Comments
 (0)