There is a very minimal Docker build with Musl showing how it can be usd to build a minimal container https://github.com/mwcampbell/vontainrr
I get a 404. Maybe this https://github.com/mwcampbell/docker-muslbase ?
Musl-libc version 1.0.0 released
11–20 of 38 posts
Re: Musl-libc version 1.0.0 released
#12Any Linux distro built against musl out there?
Re: Musl-libc version 1.0.0 released
#13Re: Musl-libc version 1.0.0 released
#14Re: Musl-libc version 1.0.0 released
#15Re: Musl-libc version 1.0.0 released
#16Hi all. I'm the original author and maintainer of musl, and I'm happy to answer any questions anyone might have about the project. Glad to see so much interest!
Re: Musl-libc version 1.0.0 released
#17Hi all. I'm the original author and maintainer of musl, and I'm happy to answer any questions anyone might have about the project. Glad to see so much interest!
Re: Musl-libc version 1.0.0 released
#18Hi all. I'm the original author and maintainer of musl, and I'm happy to answer any questions anyone might have about the project. Glad to see so much interest!
Re: Musl-libc version 1.0.0 released
#19Re: Musl-libc version 1.0.0 released
#20Hi all. I'm the original author and maintainer of musl, and I'm happy to answer any questions anyone might have about the project. Glad to see so much interest!
Is there any overview of differences/missing pieces in respect to glibc ? (I'd expect most of them are GNU extensions or or legacy, e.g. at a glance, no SunRPC, fts.h, obstack.h, fstab.h). And how is C11 library support ?
In regards to fts.h, the version in glibc is not even usable because it only works in 32-bit off_t mode, and stat() randomly fails in this mode due to modern inode numbers being 64-bit. See the recent thread on the glibc mailing list: https://sourceware.org/ml/libc-alpha/2014-03/msg00408.html and the bug tracker issue linked.
At this point both musl and glibc only cover a very small portion of C11 additions. glibc has a GSoC project proposal (with 3+ students interested in it) to add C11 threads, which is one of the big missing areas. We've been holding off on doing so in musl in an interest of making sure we do it in a way that's ABI-compatible with glibc, so we'll probably add C11 threads in the near future too.