rustc: Drop RUSTC_BOOTSTRAP

It's no longer needed.
This commit is contained in:
Eelco Dolstra 2019-07-31 16:55:35 +02:00
parent 5d41f1a676
commit 57adfbd3d4
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -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";