Skip to content

Commit 3772338

Browse files
committedNov 21, 2017
SDL2: disable parallel make
Example failure: https://hydra.nixos.org/build/64494600 It could be fixed more properly, but for me it builds under 80 secs anyway.
1 parent 7374650 commit 3772338

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

Diff for: ‎pkgs/development/libraries/SDL2/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ stdenv.mkDerivation rec {
5454
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
5555
dontDisableStatic = true;
5656

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.