diff options
| author | Samuel Holland <samuel@sholland.org> | 2017-08-22 16:24:29 -0500 |
|---|---|---|
| committer | Samuel Holland <samuel@sholland.org> | 2017-08-22 16:24:29 -0500 |
| commit | 15c141ce05793e9907aaf766d08eeaeb65788140 (patch) | |
| tree | 7f395932c97ca92514e12b9da3bedd25a48917ec /src/libstd | |
| parent | a24e0f25d7a0ac793b37eb4db353d5f9f2befc97 (diff) | |
| download | rust-15c141ce05793e9907aaf766d08eeaeb65788140.tar.gz rust-15c141ce05793e9907aaf766d08eeaeb65788140.zip | |
Remove incorrect special case of mips-musl
The libdl/librt/libpthread provided by musl are no-op (empty static libraries) on all architectures, mips included.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/build.rs b/src/libstd/build.rs index ab304f4c965..f57dec98b79 100644 --- a/src/libstd/build.rs +++ b/src/libstd/build.rs @@ -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"); |
