Skip to content

Commit b24eba9

Browse files
committed
Set SBCL dynamic space size to 16 GB on 64 bit architectures.
1 parent 28ef36a commit b24eba9

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ FROM debian:stable-slim as builder
2424

2525
COPY ./ /opt/src/pgloader
2626

27-
ARG DYNSIZE=4096
27+
ARG DYNSIZE=16384
2828

2929
RUN mkdir -p /opt/src/pgloader/build/bin \
3030
&& cd /opt/src/pgloader \

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ VERSION = 3.6.6
55
# use either sbcl or ccl
66
CL = sbcl
77

8-
# default to 4096 MB of RAM size in the image
9-
DYNSIZE = 4096
8+
# default to 16 GB of RAM size in the image
9+
DYNSIZE = 16384
1010

1111
LISP_SRC = $(wildcard src/*lisp) \
1212
$(wildcard src/monkey/*lisp) \

bundle/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ EXE = .exe
1010
COMPRESS_CORE = no
1111
DYNSIZE = 1024 # support for windows 32 bits
1212
else
13-
DYNSIZE = 4096
13+
DYNSIZE = 16384
1414
EXE =
1515
endif
1616

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
pgloader (3.6.6-2) UNRELEASED; urgency=medium
2+
3+
* Set SBCL dynamic space size to 16 GB on 64 bit architectures.
4+
5+
-- Christoph Berg <[email protected]> Mon, 11 Jul 2022 15:31:49 +0200
6+
17
pgloader (3.6.6-1) unstable; urgency=medium
28

39
* New upstream version.

debian/rules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ BITS = $(shell dpkg-architecture -qDEB_BUILD_ARCH_BITS)
99
ifeq ($(BITS),32)
1010
SIZE=1024
1111
else
12-
SIZE=4096
12+
SIZE=16384
1313
endif
1414

1515
# buildd provides a build environment where $HOME is not writable, but the

0 commit comments

Comments
 (0)