gfortran: disable parallel building to avoid weird build failures

More details are at 784025c747 (commitcomment-12328357).
This commit is contained in:
Peter Simons 2015-07-24 16:56:46 +02:00
parent c399f94bb3
commit 3d6bd6a1fa

View File

@ -61,7 +61,10 @@ let version = "4.9.3";
# Whether building a cross-compiler for GNU/Hurd.
crossGNU = cross != null && cross.config == "i586-pc-gnu";
enableParallelBuilding = true;
# 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;
patches = [ ]
++ optional enableParallelBuilding ../parallel-bconfig.patch