sbclPackages._3d-math: build fix

3d-math needs a >=4GB heap size to build, so ensure this, at least on SBCL.
This commit is contained in:
Rob Glossop
2024-12-07 22:21:50 -08:00
parent afe27494fa
commit 83d059ddf7
+3
View File
@@ -283,6 +283,9 @@ let
vk = super.vk.overrideLispAttrs (o: {
nativeLibs = [ pkgs.vulkan-loader ];
});
_3d-math = super._3d-math.overrideLispAttrs (o: {
flags = o.flags ++ (if o.program == "sbcl" then [ "--dynamic-space-size 4096" ] else [ ]);
});
});
qlpkgs =