From e46e461685e048ac975dfb5fedac34d6c03a5423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 14 Aug 2015 18:16:00 +0200 Subject: [PATCH] Revert "gfortran: disable parallel building" This reverts commit 3d6bd6a1facff3993d1b581dfcf9ee2b6a751642. The problem wasn't fortran-specific and should be fixed now. See #9212. --- pkgs/development/compilers/gcc/4.9/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix index d328308b063..ed5e9ed920b 100644 --- a/pkgs/development/compilers/gcc/4.9/default.nix +++ b/pkgs/development/compilers/gcc/4.9/default.nix @@ -61,10 +61,7 @@ let version = "4.9.3"; # Whether building a cross-compiler for GNU/Hurd. crossGNU = cross != null && cross.config == "i586-pc-gnu"; - # Builds of gfortran have failed with strange errors that we cannot reproduce - # (http://hydra.nixos.org/build/23951123). Our best guess is that the build - # system has bugs that are exposed by compiling with multiple threads. - enableParallelBuilding = !langFortran; + enableParallelBuilding = true; patches = [ ] ++ optionals enableParallelBuilding [ ../parallel-bconfig.patch ./parallel-strsignal.patch ]