about summary refs log tree commit diff
path: root/pkgs/development/compilers/rust
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-07-31 16:55:35 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-07-31 22:47:28 +0200
commit57adfbd3d41b469428edd49a0057a628052729a4 (patch)
treeb3e046f39ef9d78d4b6a25daaeb2ec3097018c31 /pkgs/development/compilers/rust
parent5d41f1a6760d6f5e8754c1286f2aeacb211b4bd0 (diff)
downloadnixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar.gz
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar.bz2
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar.lz
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar.xz
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.tar.zst
nixlib-57adfbd3d41b469428edd49a0057a628052729a4.zip
rustc: Drop RUSTC_BOOTSTRAP
It's no longer needed.
Diffstat (limited to 'pkgs/development/compilers/rust')
-rw-r--r--pkgs/development/compilers/rust/rustc.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index 66da4d33251a..615e71984b6c 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -45,12 +45,6 @@ in stdenv.mkDerivation rec {
     ++ optional (stdenv.isDarwin && !withBundledLLVM) "-lc++"
     ++ optional stdenv.isDarwin "-rpath ${llvmSharedForHost}/lib";
 
-  # Enable nightly features in stable compiles (used for
-  # bootstrapping, see https://github.com/rust-lang/rust/pull/37265).
-  # This loosens the hard restrictions on bootstrapping-compiler
-  # versions.
-  RUSTC_BOOTSTRAP = "1";
-
   # Increase codegen units to introduce parallelism within the compiler.
   RUSTFLAGS = "-Ccodegen-units=10";