diff options
author | Daniel Engberg <diizzy@FreeBSD.org> | 2024-05-19 12:36:32 +0000 |
---|---|---|
committer | Daniel Engberg <diizzy@FreeBSD.org> | 2024-05-19 12:46:46 +0000 |
commit | b1ae4190bf0d70797664f624400b0588456b4445 (patch) | |
tree | af20f78b9629fc410f60ad97fe9445dd105a5ed5 | |
parent | 4124c92e5dfec5647b74cf92f67fd82078a178f8 (diff) | |
download | ports-b1ae4190bf0d70797664f624400b0588456b4445.tar.gz ports-b1ae4190bf0d70797664f624400b0588456b4445.zip |
math/fricas: Unbreak by increasing dynamic-space-size of SBCL
Bumping from 1Gbyte (default) to 2Gbyte fixes the issue with
"Heap exhausted during garbage collection"
Reference:
https://github.com/fricas/fricas/issues/161
Tested by: pi and myself
Approved by: portmgr (blanket, build fix)
-rw-r--r-- | math/fricas/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/math/fricas/Makefile b/math/fricas/Makefile index 95fc33be753d..06e8040f3cf6 100644 --- a/math/fricas/Makefile +++ b/math/fricas/Makefile @@ -12,9 +12,6 @@ WWW= https://fricas.sourceforge.net/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/license/LICENSE.AXIOM -BROKEN= fails to build -#BROKEN_i386= build fails, reported to ML - BUILD_DEPENDS= sbcl:lang/sbcl RUN_DEPENDS= rlwrap:devel/rlwrap @@ -22,7 +19,7 @@ USES= autoreconf gmake tar:bz2 xorg USE_XORG= ice sm x11 xpm GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-lisp=sbcl +CONFIGURE_ARGS= --with-lisp="sbcl --dynamic-space-size 2048" WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} |