Open wryMitts opened 7 months ago
Hello,
When building on musl/alpine systems, ldconfig is not functional. It is not supposed to be a feature of Musl as seen below https://wiki.musl-libc.org/faq.html#Q:-Where-is-%3Ccode%3Eldconfig%3C/code%3E?
When running buildme, ldconfig returns: illegal option -p
illegal option -p
To install libz, I ran apk add zlib-dev As a workaround, I replaced the ldconfig line with 'true' after zlib-dev was installed.
apk add zlib-dev
Hello,
When building on musl/alpine systems, ldconfig is not functional. It is not supposed to be a feature of Musl as seen below https://wiki.musl-libc.org/faq.html#Q:-Where-is-%3Ccode%3Eldconfig%3C/code%3E?
When running buildme, ldconfig returns:
illegal option -p
To install libz, I ran
apk add zlib-dev
As a workaround, I replaced the ldconfig line with 'true' after zlib-dev was installed.