sbcl: add more heap size

Set the `--dynamic-spzce-size` flag for sbcl to add more heap size to
make certain packages be able to compile.
ref: https://github.com/NixOS/nixpkgs/pull/235095#issuecomment-1574352970
This commit is contained in:
dariof4 2023-06-06 17:34:32 +02:00
parent 10b06ee6fe
commit 4b9678150e

View File

@ -25120,10 +25120,12 @@ with pkgs;
sbcl_2_3_4 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl/2.x.nix { version = "2.3.4"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl_2_3_5 = wrapLisp {
pkg = callPackage ../development/compilers/sbcl/2.x.nix { version = "2.3.5"; };
faslExt = "fasl";
flags = [ "--dynamic-space-size" "3000" ];
};
sbcl = sbcl_2_3_5;