mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
camlp4: fix build with spacetime
This commit is contained in:
parent
bddabe58fe
commit
3ede620042
1 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,11 @@ stdenv.mkDerivation rec {
|
|||
dontAddPrefix = true;
|
||||
|
||||
preConfigure = ''
|
||||
# increase stack space for spacetime variant of the compiler
|
||||
# https://github.com/ocaml/ocaml/issues/7435
|
||||
# but disallowed by darwin sandbox
|
||||
ulimit -s unlimited || true
|
||||
|
||||
configureFlagsArray=(
|
||||
--bindir=$out/bin
|
||||
--libdir=$out/lib/ocaml/${ocaml.version}/site-lib
|
||||
|
|
Loading…
Reference in a new issue