summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-10-09 13:02:41 +0000
committerAlyssa Ross <hi@alyssa.is>2023-10-10 14:42:30 +0000
commitc11cb00a1e86d63b4d6599fe774e22b1c02f10c9 (patch)
tree0b03ae0db9d4271078a569586e58115805eb5328 /pkgs/build-support
parenta74c8378137a23c0d747a617e46a45e134da67aa (diff)
downloadnixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar.gz
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar.bz2
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar.lz
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar.xz
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.tar.zst
nixpkgs-c11cb00a1e86d63b4d6599fe774e22b1c02f10c9.zip
rustc: 1.72.1 -> 1.73.0
This upgrade unfortunately removes MIPS support, as it has been
dropped to Tier 3[1] and so bootstrap tarballs are no longer provided.

It looks like it was dropped due to multiple codegen bugs, and lack of
maintenance, so bringing it back would probably involve engaging with
Rust/LLVM upstream on those.

[1]: https://github.com/rust-lang/compiler-team/issues/648
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/rust/build-rust-package/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/build-support/rust/build-rust-package/default.nix b/pkgs/build-support/rust/build-rust-package/default.nix
index da868861e2c..a27c1de013b 100644
--- a/pkgs/build-support/rust/build-rust-package/default.nix
+++ b/pkgs/build-support/rust/build-rust-package/default.nix
@@ -156,7 +156,8 @@ stdenv.mkDerivation ((removeAttrs args [ "depsExtraArgs" "cargoUpdateHook" "carg
       # Platforms without host tools from
       # https://doc.rust-lang.org/nightly/rustc/platform-support.html
       "armv7a-darwin"
-      "armv5tel-linux" "armv7a-linux" "m68k-linux" "riscv32-linux"
+      "armv5tel-linux" "armv7a-linux" "m68k-linux" "mipsel-linux"
+      "mips64el-linux" "riscv32-linux"
       "armv6l-netbsd"
       "x86_64-redox"
       "wasm32-wasi"