cloog: enable parallel building, explicitly disable parallel testing

This commit is contained in:
Sergei Trofimovich 2021-11-07 15:40:11 +00:00
parent 26751d3f1d
commit eca554435e

View file

@ -15,8 +15,9 @@ stdenv.mkDerivation rec {
configureFlags = [ "--with-isl=system" ];
# Breaks the test cases
#enableParallelBuilding = true;
enableParallelBuilding = true;
# Breaks the test cases as it reuses 'cloog_temp' file name for different tests.
enableParallelChecking = false;
doCheck = true;