Skip to content

Commit 66bee2d

Browse files
authored
Fix build (AppImage#98)
* Remove -fPIE * FROM ${docker_arch}/alpine:3.20
1 parent 316c6cf commit 66bee2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG docker_arch
2-
FROM ${docker_arch}/alpine:latest
2+
FROM ${docker_arch}/alpine:3.20
33

44
# includes dependencies from https://git.alpinelinux.org/aports/tree/main/fuse3/APKBUILD
55
RUN apk add --no-cache \

src/runtime/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CC = gcc
2-
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 -fPIE
2+
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
33
LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3
44

55
all: runtime

0 commit comments

Comments
 (0)