postgresql: enable parallel building on darwin
This was disabled to fix #51093. The related discussion upstream revealed that this
has been fixed in [1] for v12+. Since v12 is our oldest supported version right now,
we should be able to safely enable parallel building on darwin again.
Furthermore, it seems that this kind of issue was also fixed in #51221 and #51408
for the general case.
[1]: 826eff57c4
This commit is contained in:
parent
4adcc41cd9
commit
9f90ad30fa
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ let
|
||||||
]
|
]
|
||||||
++ lib.optionals jitSupport [ llvmPackages.llvm.dev nukeReferences patchelf ];
|
++ lib.optionals jitSupport [ llvmPackages.llvm.dev nukeReferences patchelf ];
|
||||||
|
|
||||||
enableParallelBuilding = !stdenv'.isDarwin;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
separateDebugInfo = true;
|
separateDebugInfo = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue