Hi, I am trying to use this on Alpine linux and regrettably the compilation does not go smoothly; this mostly complains about unknown identifiers (like struct stat64...). Would you consider building for musl?
To reproduce:
FROM alpine:latest AS builder
RUN apk add build-base curl git musl-fts-dev
RUN cd /tmp && git clone https://github.com/fritzw/ld-preload-open
RUN cd /tmp/ld-preload-open && sed -i 's/-Wall//' Makefile && make
Hi, I am trying to use this on Alpine linux and regrettably the compilation does not go smoothly; this mostly complains about unknown identifiers (like
struct stat64...). Would you consider building for musl?To reproduce: