File tree Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Expand file tree Collapse file tree 5 files changed +11
-5
lines changed Original file line number Diff line number Diff 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 \
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ VERSION = 3.6.6
55# use either sbcl or ccl
66CL = 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
1111LISP_SRC = $(wildcard src/* lisp) \
1212 $(wildcard src/monkey/* lisp) \
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ EXE = .exe
1010COMPRESS_CORE = no
1111DYNSIZE = 1024 # support for windows 32 bits
1212else
13- DYNSIZE = 4096
13+ DYNSIZE = 16384
1414EXE =
1515endif
1616
Original file line number Diff line number Diff line change 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+
17pgloader (3.6.6-1) unstable; urgency=medium
28
39 * New upstream version.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ BITS = $(shell dpkg-architecture -qDEB_BUILD_ARCH_BITS)
99ifeq ($(BITS ) ,32)
1010SIZE =1024
1111else
12- SIZE =4096
12+ SIZE =16384
1313endif
1414
1515# buildd provides a build environment where $HOME is not writable, but the
You can’t perform that action at this time.
0 commit comments