git: d7ba9f6ba672 - main - lang/quilc: Lower QuickLisp's dynamic-space-size to 3072 (3GB)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 04 Aug 2022 07:41:28 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=d7ba9f6ba6728fe8024aa498938dd89cb5742e1d commit d7ba9f6ba6728fe8024aa498938dd89cb5742e1d Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2022-08-04 07:03:47 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2022-08-04 07:41:21 +0000 lang/quilc: Lower QuickLisp's dynamic-space-size to 3072 (3GB) ... in an attempt to fix build on 32-bit systems. Also minor correction in do-build target. Reported by: fallout --- lang/quilc/Makefile | 2 +- lang/quilc/files/patch-Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/quilc/Makefile b/lang/quilc/Makefile index 77f1c1cddbe9..fc122461325f 100644 --- a/lang/quilc/Makefile +++ b/lang/quilc/Makefile @@ -45,7 +45,7 @@ BUILD_DEPENDS+= curl:ftp/curl do-build: # build, download dependencies during build, and save build log with URLs in it - @set -e; set -o pipefail; cd ${WRKSRC} && (${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${TARGET_ALL} 2>&1 | tee -a ${WRKDIR}/build.log) + @set -e; set -o pipefail; cd ${WRKSRC} && (${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${TARGET_ALL} | tee -a ${WRKDIR}/build.log) # compute Makefile.deps based on URLs in build.log @${FILESDIR}/build-log-to-makefile-deps ${WRKDIR}/build.log > Makefile.deps .else diff --git a/lang/quilc/files/patch-Makefile b/lang/quilc/files/patch-Makefile index cf1340e810d1..da5762f2bbb2 100644 --- a/lang/quilc/files/patch-Makefile +++ b/lang/quilc/files/patch-Makefile @@ -5,7 +5,7 @@ RIGETTI_LISP_LIBRARY_HOME=../ SBCL_BIN=sbcl -SBCL=$(SBCL_BIN) --noinform --no-userinit --no-sysinit --non-interactive -+SBCL=$(SBCL_BIN) --dynamic-space-size 4096 --noinform --no-userinit --no-sysinit --non-interactive ++SBCL=$(SBCL_BIN) --dynamic-space-size 3072 --noinform --no-userinit --no-sysinit --non-interactive QUICKLISP_HOME=$(HOME)/quicklisp QUICKLISP_SETUP=$(QUICKLISP_HOME)/setup.lisp QUICKLISP=$(SBCL) --load $(QUICKLISP_HOME)/setup.lisp \