summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-01-14 17:38:46 +0100
committerDaiderd Jordan <daiderd@gmail.com>2017-01-14 17:38:46 +0100
commite1d0c9ae2051f3d121160c1dd68e4696c03fa2e1 (patch)
tree3bd5a1851abb602e68931b949d31836ae3027b2e /pkgs/development/compilers
parentafb73be9f7de5ee4c69419aa47916caf23c806a1 (diff)
downloadnixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar.gz
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar.bz2
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar.lz
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar.xz
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.tar.zst
nixlib-e1d0c9ae2051f3d121160c1dd68e4696c03fa2e1.zip
rustc: disable parallel building because of https://github.com/rust-lang/rust/issues/30181
https://github.com/NixOS/nixpkgs/pull/21742
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/rust/rustc.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index 190bb1a69fda..056177fd265f 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -142,7 +142,9 @@ stdenv.mkDerivation {
   doCheck = true;
   dontSetConfigureCross = true;
 
-  enableParallelBuilding = true;
+  # https://github.com/NixOS/nixpkgs/pull/21742#issuecomment-272305764
+  # https://github.com/rust-lang/rust/issues/30181
+  # enableParallelBuilding = false;
 
   meta = with stdenv.lib; {
     homepage = http://www.rust-lang.org/;