Fix musl static build: update Dockerfile target name and link libs
ober
eb2323b8cd24ad44f79b949cb3934901c48e95be
--- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY . /build/mine/jerboa-gitsafe # ── Build gitsafe-musl ─────────────────────────────────────────────────────── WORKDIR /build/mine/jerboa-gitsafe -RUN make gitsafe-musl-local +RUN make linux-local # ── Verify ─────────────────────────────────────────────────────────────────── RUN ./gitsafe-musl --version --- a/build-gitsafe-musl.ss +++ b/build-gitsafe-musl.ss @@ -205,7 +205,7 @@ ;; --- Step 5: Compile and link with musl-gcc --- (printf "[5/6] Compiling and linking with musl-gcc (static)...\n") -(define link-libs "-lkernel -llz4 -lz -lm -ldl -lpthread -luuid -lncurses") +(define link-libs "-lkernel -llz4 -lz -lm -ldl -lpthread") (let ([rc (system (format "musl-gcc -c -O2 -I~a -o gitsafe-main-musl.o gitsafe-main-musl.c" musl-chez-dir))])