Set SBCL dynamic space size to 16 GB on 64 bit architectures.

This commit is contained in:
Christoph Berg 2022-07-27 17:27:31 +02:00 committed by Christoph Berg
parent 28ef36a6dc
commit b24eba972d
5 changed files with 11 additions and 5 deletions

View File

@ -24,7 +24,7 @@ FROM debian:stable-slim as builder
COPY ./ /opt/src/pgloader
ARG DYNSIZE=4096
ARG DYNSIZE=16384
RUN mkdir -p /opt/src/pgloader/build/bin \
&& cd /opt/src/pgloader \

View File

@ -5,8 +5,8 @@ VERSION = 3.6.6
# use either sbcl or ccl
CL = sbcl
# default to 4096 MB of RAM size in the image
DYNSIZE = 4096
# default to 16 GB of RAM size in the image
DYNSIZE = 16384
LISP_SRC = $(wildcard src/*lisp) \
$(wildcard src/monkey/*lisp) \

View File

@ -10,7 +10,7 @@ EXE = .exe
COMPRESS_CORE = no
DYNSIZE = 1024 # support for windows 32 bits
else
DYNSIZE = 4096
DYNSIZE = 16384
EXE =
endif

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
pgloader (3.6.6-2) UNRELEASED; urgency=medium
* Set SBCL dynamic space size to 16 GB on 64 bit architectures.
-- Christoph Berg <myon@debian.org> Mon, 11 Jul 2022 15:31:49 +0200
pgloader (3.6.6-1) unstable; urgency=medium
* New upstream version.

2
debian/rules vendored
View File

@ -9,7 +9,7 @@ BITS = $(shell dpkg-architecture -qDEB_BUILD_ARCH_BITS)
ifeq ($(BITS),32)
SIZE=1024
else
SIZE=4096
SIZE=16384
endif
# buildd provides a build environment where $HOME is not writable, but the