Skip to content

Commit

Permalink
use default page size for amd64
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf committed Aug 27, 2024
1 parent e830b17 commit 2cc2767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN JEMALLOC_BDIR=$(mktemp -d) && \
cd $JEMALLOC_BDIR && \
./autogen.sh && \
arch=$(dpkg --print-architecture) && \
if [[ $arch == amd64 ]]; then ./configure --with-lg-page=21 --with-lg-hugepage=21 --with-lg-quantum=6; \
if [[ $arch == amd64 ]]; then ./configure; \
elif [[ $arch == aarch64 ]]; then ./configure --with-lg-page=14; \
else ./configure; \
fi && \
Expand Down

0 comments on commit 2cc2767

Please sign in to comment.