musl

From Wikipedia, the free encyclopedia
Jump to: navigation, search
musl
Musl libc.png
Developer(s) Rich Felker (dalias) and others
Stable release 1.1.10[1] / June 4, 2015 (2015-06-04)
Operating system Linux 2.6 or later
Platform x86, x86 64, ARM, MIPS, Microblaze, PowerPC, SuperH
Type
License MIT License
Website www.musl-libc.org

musl is a C standard library intended for operating systems based on the Linux kernel, released under the MIT License.[2] It was developed by Rich Felker with the goal to write a clean, efficient and standards-conformant libc implementation. It is designed from scratch to allow efficient static linking and to have realtime-quality robustness by avoiding races, internal failures on resource exhaustion and various other bad worst-case behaviours present in existing implementations.[3] The dynamic runtime is a single file with stable ABI allowing race-free updates and the static linking support allows an application to be deployed as a single portable binary without significant size overhead.

It claims compatibility with the POSIX 2008 specification and the C11 standard.[4] It also implements most of the widely used non-standard Linux, BSD, and glibc functions.

As of 2015, Linux distributions that use musl as the standard C library include Alpine Linux, OpenWRT,[5] Sabotage,[6] Void (Linux),[7] and Morpheus Linux.[8]

See also[edit]

Other C standard libraries

References[edit]

External links[edit]