Skip to content

Commit

Permalink
SDL2: disable parallel make
Browse files Browse the repository at this point in the history
Example failure: https://hydra.nixos.org/build/64494600
It could be fixed more properly, but for me it builds under 80 secs anyway.
  • Loading branch information
vcunat committed Nov 21, 2017
1 parent 7374650 commit 3772338
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/libraries/SDL2/default.nix
Expand Up @@ -54,7 +54,8 @@ stdenv.mkDerivation rec {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
dontDisableStatic = true;

enableParallelBuilding = true;
# Flaky: fatal error: pointer-constraints-....h: No such file or directory
#enableParallelBuilding = true;

# XXX: By default, SDL wants to dlopen() PulseAudio, in which case
# we must arrange to add it to its RPATH; however, `patchelf' seems
Expand Down

0 comments on commit 3772338

Please sign in to comment.