README 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. musl libc - a new standard library to power a new generation of
  2. Linux-based devices. musl is lightweight, fast, simple, free, and
  3. strives to be correct in the sense of standards-conformance and
  4. safety.
  5. musl is an alternative to glibc, eglibc, uClibc, dietlibc, and klibc.
  6. For reasons why one might prefer musl, please see the FAQ and libc
  7. comparison chart on the project website,
  8. http://www.etalabs.net/musl/
  9. For installation instructions, see the INSTALL file.
  10. Please refer to the COPYRIGHT file for details on the copyright and
  11. license status of code included in musl (standard MIT license).
  12. Greetings!
  13. With the 0.9.0 release, musl has reached a milestone in completeness
  14. and compatibility. All interfaces in ISO C99 and POSIX 2008 base exist
  15. in musl, along with a number of non-standardized interfaces based on
  16. GNU and BSD libraries and syscall interfaces for Linux-kernel-specific
  17. functions. Some interfaces lack obscure or rarely-used functionality
  18. needed for strict conformance, but the vast majority of interfaces go
  19. above and beyond the requirements for conformance, often promising
  20. success where other implementations can fail under resource exhaustion
  21. or other corner-case conditions.
  22. At this point, hundreds of packages have been successfully built
  23. against musl - either out-of-the-box or with minor patches to address
  24. portability errors - ranging from low-level system utilities and
  25. network daemons to major gui applications. Testing has been conducted
  26. using three separate test frameworks and numerous additional
  27. standalone test cases to verify the correctness of the implementation.
  28. Included with this package is a gcc wrapper script (musl-gcc) which
  29. allows you to build musl-linked programs using an existing gcc 3.x or
  30. 4.x toolchain on the host. There are also now at several mini
  31. distributions (in the form of build scripts) which provide a
  32. self-hosting musl-based toolchain and system root. These are much
  33. better options than the wrapper script if you wish to use dynamic
  34. linking or build packages with many library dependencies. See the musl
  35. website for details.
  36. The musl project is actively seeking contributors, mostly in the areas
  37. of porting, testing, and application compatibility improvement. For
  38. bug reports, support requests, or to get involved in development,
  39. please visit #musl on Freenode IRC or subscribe to the musl mailing
  40. list by sending a blank email to musl-subscribe AT lists DOT openwall
  41. DOT com.
  42. Thank you for using musl.
  43. Cheers,
  44. Rich Felker / dalias