File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ find /scripts
12
12
apk update
13
13
apk add alpine-sdk util-linux strace file autoconf automake libtool xz bash \
14
14
eudev-dev gettext-dev linux-headers meson \
15
- zstd-dev zstd-static zlib-dev zlib-static clang
15
+ zstd-dev zstd-static zlib-dev zlib-static clang mimalloc-dev
16
16
17
17
/scripts/common/install-dependencies.sh
18
18
/scripts/build-runtime.sh
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM alpine:3.21
4
4
RUN apk add --no-cache \
5
5
bash alpine-sdk util-linux strace file autoconf automake libtool xz \
6
6
eudev-dev gettext-dev linux-headers meson \
7
- zstd-dev zstd-static zlib-dev zlib-static clang
7
+ zstd-dev zstd-static zlib-dev zlib-static clang musl-dev mimalloc-dev
8
8
9
9
COPY scripts/common/install-dependencies.sh /tmp/scripts/common/install-dependencies.sh
10
10
COPY patches/ /tmp/patches/
Original file line number Diff line number Diff line change 1
1
GIT_COMMIT := $(shell cat version)
2
2
CC = clang
3
3
CFLAGS = -std=gnu99 -Os -D_FILE_OFFSET_BITS=64 -DGIT_COMMIT=\"$(GIT_COMMIT ) \" -T data_sections.ld -ffunction-sections -fdata-sections -Wl,--gc-sections -static -Wall -Werror -static-pie
4
- LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3
4
+ LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3 -lmimalloc
5
5
6
6
all : runtime
7
7
You can’t perform that action at this time.
0 commit comments