Revert "gfortran: disable parallel building"

This reverts commit 3d6bd6a1fa.
The problem wasn't fortran-specific and should be fixed now. See #9212.
This commit is contained in:
Vladimír Čunát 2015-08-14 18:16:00 +02:00
parent 0799ebf5b7
commit e46e461685
1 changed files with 1 additions and 4 deletions

View File

@ -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 ]