mirror of
https://github.com/containers/fuse-overlayfs.git
synced 2025-09-09 15:24:54 -04:00
build: Fix libfuse version
Building the current master branch fails with: #8 4.712 ninja: job failed: cc -Ilib/libfuse3.a.p -Ilib -I../lib -Iinclude -I../include -I. -I.. -fdiagnostics-color=always -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_REENTRANT -DHAVE_LIBFUSE_PRIVATE_CONFIG_H -Wno-sign-compare -D_FILE_OFFSET_BITS=64 -Wstrict-prototypes -Wmissing-declarations -Wwrite-strings -fno-strict-aliasing -Wno-unused-result -DHAVE_SYMVER_ATTRIBUTE -fPIC -pthread -DFUSE_USE_VERSION=317 '-DFUSERMOUNT_DIR="/usr/bin"' -MD -MQ lib/libfuse3.a.p/fuse_signals.c.o -MF lib/libfuse3.a.p/fuse_signals.c.o.d -o lib/libfuse3.a.p/fuse_signals.c.o -c ../lib/fuse_signals.c #8 4.713 ../lib/fuse_signals.c:19:10: fatal error: execinfo.h: No such file or directory #8 4.713 19 | #include <execinfo.h> #8 4.713 | ^~~~~~~~~~~~ #8 4.713 compilation terminated. #8 13.65 ninja: subcommand failed Use the latest stable version, which is 3.16.2 Signed-off-by: Akihiko Odaki <odaki@rsg.ci.i.u-tokyo.ac.jp>
This commit is contained in:
parent
da0f9cb03b
commit
d34257cd3a
@ -3,7 +3,7 @@ WORKDIR /build
|
||||
RUN apk add git make gcc libc-dev musl-dev glib-static gettext eudev-dev \
|
||||
linux-headers automake autoconf cmake meson ninja clang go-md2man
|
||||
|
||||
RUN git clone https://github.com/libfuse/libfuse && \
|
||||
RUN git clone https://github.com/libfuse/libfuse -b fuse-3.16.2 && \
|
||||
cd libfuse && \
|
||||
mkdir build && \
|
||||
cd build && \
|
||||
|
@ -3,7 +3,7 @@ WORKDIR /build
|
||||
RUN dnf update -y && \
|
||||
dnf install -y git make automake autoconf gcc glibc-static meson ninja-build clang
|
||||
|
||||
RUN git clone https://github.com/libfuse/libfuse && \
|
||||
RUN git clone https://github.com/libfuse/libfuse -b fuse-3.16.2 && \
|
||||
cd libfuse && \
|
||||
mkdir build && \
|
||||
cd build && \
|
||||
|
Loading…
x
Reference in New Issue
Block a user