Skip to content

Commit

Permalink
Presence of libraries does not depend on architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
smaeul committed Mar 6, 2017
1 parent 470b62f commit 5eba141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fn main() {
println!("cargo:rustc-link-lib=dl");
println!("cargo:rustc-link-lib=log");
println!("cargo:rustc-link-lib=gcc");
} else if !target.contains("musl") || target.contains("mips") {
} else if !target.contains("musl") {
println!("cargo:rustc-link-lib=dl");
println!("cargo:rustc-link-lib=rt");
println!("cargo:rustc-link-lib=pthread");
Expand Down

0 comments on commit 5eba141

Please sign in to comment.