mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 18:36:12 +02:00
Set SBCL dynamic space size to 16 GB on 64 bit architectures.
This commit is contained in:
parent
28ef36a6dc
commit
b24eba972d
@ -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 \
|
||||
|
||||
4
Makefile
4
Makefile
@ -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) \
|
||||
|
||||
@ -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
6
debian/changelog
vendored
@ -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
2
debian/rules
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user