musl is an implementation of the userspace portion of the standard library functionality described in the ISO C and POSIX standards, plus common extensions. It can be used both as the system-wide C library for operating system installations and distributions, and as a tool for building individual application binaries deployable on a wide range of systems compatible with the Linux system calls API.
This manual covers many details of musl which may be of interest to programmers, systems integrators, and end users. It is a work in progress.
The interfaces in musl are modeled upon and intended to conform to the requirements of the ISO C11 standard (ISO/IEC 9899-2011), including Annex F, and POSIX 2008 / Single Unix Standard Version 4, with all current technical corrigenda applied. However, musl has not been certified by any standards body, and no guarantee of conformance is made by the copyright holders or any other party with an interest in musl.
Moreover, since musl provides only the userspace portion of the standard system interfaces, conformance to the requirements of POSIX depends in part on the behavior of the underlying kernel. Linux 2.6.39 or later is believed to be sufficient; earlier versions in the 2.6 series will work, but with varying degrees of non-conformance, particularly in the area of signal handling behavior and close-on-exec race conditions.
Likewise, conformance to the requirements of ISO C, and especially Annex F (IEEE floating point semantics), depends in part on both the compiler used to build musl and the compiler used when building applications against musl. At this time there is no known fully conforming compiler.
The following targets architectures are supported, and unless otherwise noted should be fully functional. Targets described as "experimental" are available for build, but may not work correctly and may not yet have ABI stability.
i386
)Despite the name, the minimum supported CPU model is actually 80486
unless kernel emulation of the cmpxchg
instruction is added.
x86_64
, x32
)Both the standard LP64 ABI and the "x32" ILP32 ABI are supported, but the latter is experimental.
arm[eb][hf]
)All ARM targets use the EABI, which requires armv4t
or later. The
default target is little-endian and uses the standard EABI where
floating point arguments are passed in general-purpose registers.
Hard-float ABI and big-endian variants are also supported.
aarch64[_be]
)The default AArch64 target is little-endian. A big-endian variant is also supported. This target is experimental.
mips[r6][el][-sf]
, mips64[r6][el][-sf]
, mipsn32[r6][el][-sf]
)All 32-bit MIPS targets use the o32 ABI. For 64-bit, both the standard LP64 ABI and the "n32" ILP32 ABI are supported. The default target is big-endian and uses FPU registers for floating point arguments. Little-endian and soft-float ABI variants are also supported.
For early MIPS models lacking ll/sc atomics or the rdhwr
TLS
register, kernel emulation of these features is mandatory; this is
standard on Linux.
powerpc[-sf]
, powerpc64[le]
)For 32-bit, only big-endian is supported. Hard-float is default but
thre is a soft-float option, mainly intended for use with Freescale
CPUs that use an incompatible FPU. In addition, the following
non-default toolchain configurations are mandatory: long double
must
be implemented as 64-bit IEEE double (not IBM double-double), and for
dynamic linking to be supported, the "secure PLT" variant must be
selected.
For 64-bit, both little and big endian are supported and use the new
("ELFv2") ABI. This differs from tradition on non-musl systems where
big endian used the old ABI. As with 32-bit, long double
must be
implemented as 64-bit IEEE double (not IBM double-double)
riscv64[-sp|-sf]
)The default ABI is hard-float; soft-float and single-precision-only FPU variants are also available but experimental.
Only 64-bit is supported.
microblaze[el]
)The Microblaze target is big-endian and soft-float by default. A
little-endian variant is also supported. The lwx
and swx
atomic
instructions, which were missing on early Microblaze versions, are
mandatory.
or1k
)No target/ABI variants exist for OpenRISC 1000. It is always big-endian with soft-float.
sh[eb][-nofpu][-fdpic]
)SuperH targets are little-endian and hard-float by default. Big-endian and soft-float variants are also supported. An alternate FDPIC ABI is also supported, admitting shared program text on targets without an MMU.
Some CPU models have only a single-precision FPU; these must use the
soft-float ABI. Compiler configurations that redefine the double
type as single-precision are not supported.
s390x
)Only 64-bit is supported.
m68k
)Only hard-float is supported.
The build system for musl uses the well-known ./configure
idiom.
musl's configure script is not based on GNU autoconf, but is intended
to closely match the configure command line interface documented in
the GNU Coding Standards. Running configure produces a config.mak
file which can further be edited by hand, if necessary.
The only build-time prerequisites for musl are the standard POSIX shell and utilities, GNU Make (version 3.81 or later) and an appropriate freestanding C99 compiler toolchain (see below) targeting the desired instruction set architecture and ABI.
The system used to build musl does not need to be Linux-based, nor do the Linux kernel headers need to be available.
Building musl requires a conforming C99 compiler that can target a freestanding environment, plus the following extensions:
__attribute__((__weak__,__alias__(...)))
.__attribute__((__visibility__(...)))
.To build musl as a shared library and dynamic linker, the compiler
must also support generation of position-independent code via -fPIC
.
Recent versions of GCC or LLVM/clang are recommended for building musl. Other compilers may work but are not as widely tested.
For i386 targets, GCC versions prior to 4.6 fail to handle excess floating point precision in a conforming manner; this may affect the behavior of some math functions. If this is not a concern, GCC versions as early as 3.4.6, and possibly earlier, can be used.
LLVM/clang versions prior to 3.2 are unable to build musl due to PR #13694.
Firm/cparser can build musl as a static library, but lack of support for position-independent code generation precludes building a shared library. At times there have been regressions which break musl.
PCC can build musl as a static or shared library. Versions prior to a 1.2.0.DEVEL 20150512 have known bugs which affect the dynamic linker for i386. Regressions in PCC have frequently affected musl, so the current status of the compiler and its compatibility with musl should be checked before usea.
Running ./configure --help
from the top-level source directory will
print usage information for configure. In most cases, the only options
which should be needed are:
--prefix
, used to control where musl will be installed. The prefix
for musl defaults to /usr/local/musl
rather than /usr/local
to
avoid breaking an existing non-musl environment on the host. If musl
will be used as the primary system libc, prefix should usually be
set to /usr
or /
.
--syslibdir
, used to specify the location at which the dynamic
linker should be installed and found at runtime. The default of
/lib
should only be overridden when installing in /lib
is
impossible, since the pathname of the dynamic linker is stored in
all dynamic-linked executables, and executables using non-standard
paths for the dynamic linker may be difficult to deploy on other
systems.
Both --prefix
and --syslibdir
should reflect the final runtime
location where musl will be installed. If musl should be installed to
a different location to prepare a package file or new target system
image, the DESTDIR
variable can be set when running make install
.
In this case, DESTDIR
will be prepended to all installation paths,
but will not be saved anywhere in the files installed.
Other build options of interest are:
CC=...
, to choose a non-default compiler.
CFLAGS=...
, to pass custom options to the compiler.
--disable-shared
, to disable building shared libc.so
if it will
not be needed. This cuts the build time in half.
--disable-static
, to disable building libc.a
. Other (empty) .a
files are still built. This also cuts the build time in half.
--enable-optimize=
list, where list is a comma-separated list
of components (subdirectories of src
, or glob patterns) which will
be optimized at -O3
rather than the default optimization level
-Os
. Manually specifying an optimization level in the provided
CFLAGS
, or using --enable-debug
or --disable-optimize
, will
turn off default optimizations.
--enable-warnings
, to turn on the recommended set of GCC warning
options with which musl is intended to compile warning-free.
--enable-debug
, to turn on debugging. Adding -g
to CFLAGS
manually also works. In the future, --enable-debug
may also enable
additional debugging features at the source level.
See ./configure --help
for additional options.
After running configure, run make
to compile and make install
to
install. If desired, make install
can be invoked directly without
first running make
, but it may be desirable to do these as separate
steps if elevated privileges are needed to install to the final
destination. musl's makefile is fully declarative and non-recursive,
and may be arbitrarily parallelized with the -j
option.
Note: The install
target in musl's Makefile
is also declarative,
and its proper operation depends on file timestamps being correct. If
files with newer/future timestamps already exist in the destination,
updated files may fail to be installed. This can be avoided by
deleting the offending files, fixing their timestamps, or installing
first to a fresh DESTDIR
then moving the files into place.
If installing for the first time and using dynamic linking, it may be
necessary to create a path file for the dynamic linker. See
../etc/ld-musl-$(ARCH).path
under the heading Additional Files
Used later in this part of the manual.
In the following, $(syslibdir)
, $(includedir)
, and $(libdir)
refer to the paths chosen at build time (by default, /lib
,
$(prefix)/include
, and $(prefix)/lib
, respectively) and $(ARCH)
refers to the full name for the target CPU architecture/ABI,
including the "subarch" component.
$(syslibdir)/ld-musl-$(ARCH).so.1
provides the dynamic linker, or
"program interpreter", for dynamically linked ELF programs using musl.
The absolute pathname to this file must be stored in all such
programs. The build and installation system provided with musl sets it
up as a symbolic link to $(libdir)/libc.so
, but system integrators
may choose to make it available in whichever ways they find suitable.
Header files for use by the C compiler are installed in
$(includedir)
. The standard headers are fully self-contained, and do
not make use of kernel-provided or compiler-provided headers or
otherwise require such headers to be present.
The file libc.a
installed in $(libdir)
provides the entire
standard library implementation for static linking. The file libc.so
provides the linker with access to the standard library's symbols for
use at link-time in producing dynamic-linked binaries. It is not
searched at runtime; the standard library is resolved as part of the
program interpreter at $(syslibdir)/ld-musl-$(ARCH).so.1
.
Additional files libm.a
, librt.a
, libpthread.a
, libcrypt.a
,
libutil.a
, libxnet.a
, libresolv.a
, and libdl.a
are provided in
$(libdir)
as empty library archives. They contain no code, but are
present to satisfy the POSIX requirement that options of the form
-lm
, -lpthread
, etc. be accepted by the c99
compiler.
Several bare object files are also included in $(libdir)
: crt1.o
and Scrt1.o
are the normal and position-independent versions,
respectively, of the entry point code linked into every program.
crti.o
and crtn.o
, also linked into every program and into shared
libraries, provide support for legacy means by which the compiler can
arrange for global constructors and destructors to be executed. It is
possible to setup a legacy-free compiler toolchain that does not need
the crti.o
and crtn.o
files if desired.
Included with musl is a wrapper script musl-gcc
which can be used
with an existing GCC compiler toolchain to build programs using musl.
If installed, the script itself is located at $(bindir)/musl-gcc
,
and a supporting GCC specs file it uses is located at
$(libdir)/musl-gcc.specs
.
musl aims to avoid imposing filesystem policy; however, the following minimal set of filesystems dependencies must be met in order for programs using musl to function correctly:
/dev/null
- device node, required by POSIX
/dev/tty
- device node, required by POSIX
/tmp
- required by POSIX to exist as a directory, and used by
various temporary file creation functions.
/bin/sh
- an executable file providing a POSIX-conforming shell
/proc
- must be a mount point for Linux procfs or a symlink to
such. Several functions such as realpath, fexecve, and a number of
the "at" functions added in POSIX 2008 need access to /proc to
function correctly.
$(syslibdir)/ld-musl-$(ARCH).so.1
- must resolve to the musl
dynamic linker/libc.so binary in order for dynamic-linked programs
to run. For static-linked programs it is unnecessary.
While some programs may operate correctly even without some or all of the above, musl's behavior in their absence is unspecified.
/dev/log
- a UNIX domain socket to which the syslog()
interface
sends log messages. If absent, log messages will be discarded.
/dev/shm
- a directory; should have permissions 01777. If absent,
POSIX shared memory and named semaphore interfaces will fail;
programs not using these features will be unaffected.
/dev/ptmx
and /dev/pts
- device node and devpts filesystem mount
point, respectively. If absent, posix_openpt()
and openpty()
will fail.
/etc/passwd
and /etc/group
- text files containing the user and
group databases, mappings between names and numeric ids, and group
membership lists, in the standard traditional format. If absent,
user and/or group lookups will fail.
/var/run/nscd/socket
- a UNIX domain socket socket to which
queries, in nscd protocol format, will be sent for user/group
lookups not satisfied by the contents of /etc/passwd
and
/etc/group
. If absent, such queries will not be performed.
/etc/shadow
- text file containing shadow password hashes for some
or all users. If absent (and TCB shadow files are also absent),
shadow password lookups will fail.
/etc/tcb/
user/shadow
- text file containing a single shadow
password record for user, based on the Openwall TCB alternative
for shadow password storage. If absent for user, /etc/shadow
will be searched.
/etc/resolv.conf
- text file providing addresses of nameservers to
be used for DNS lookups. If absent, DNS requests will be sent to the
loopback address and will fail unless the host has its own
nameserver.
/etc/hosts
- text file mapping hostnames to IP addresses. If
absent, only DNS will be used.
/etc/services
- text file mapping network service names to port
numbers. If absent, only numeric service/port strings can be used.
/etc/shells
- a list of shell pathnames to be returned by the
getusershell
interface. If absent a built-in default list will be
used.
/usr/share/zoneinfo
, /share/zoneinfo
, and /etc/zoneinfo
-
directories searched for time zone files when the TZ
environment
variable is set to a relative pathname. If absent, only absolute
zoneinfo file pathnames or POSIX timezone specifications can be
used.
/etc/localtime
- if present, it is expected to be a zoneinfo
format file and provides the default time zone when the TZ
environment variable is not set or is blank.
../etc/ld-musl-$(ARCH).path
, taken relative to the location of the
"program interpreter" specified in the program's headers - if
present, this will be processed as a text file containing the shared
library search path, with components delimited by newlines or
colons. If absent, a default path of
"/lib:/usr/local/lib:/usr/lib"
will be used. Not used by
static-linked programs.
PATH
- Used by execvp, execlp, and posix_spawnp as specified in
POSIX. If unset, a default search path of
"/usr/local/bin:/bin:/usr/bin"
is used.
TZ
- Specifies the local timezone to be used for functions which
deal with local time. The value of TZ
can be either a POSIX
timezone specification in the form
stdoffset[dst[offset][,start[/time],end[/time]]]
or the name of a
zoneinfo-binary-format timezone file (the form used by glibc and
most other systems). The latter is interpreted as an absolute
pathname if it begins with a slash, a relative pathname if it begins
with a dot, and otherwise is searched in /usr/share/zoneinfo
,
/share/zoneinfo
, and /etc/zoneinfo
. When searching these paths,
strings including any dots are rejected. If the program was invoked
setuid, setgid, or with other elevated capabilities, the absolute
and relative pathname options are not available.
DATEMSK
- Used by the getdate
function as a pathname for the
file containing date formats to scan, per POSIX.
MSGVERB
- Used by the fmtmsg
function to control message
verbosity.
PWD
- Used by the nonstandard get_current_dir_name
function; if
it matches the actual current directory, it is returned instead of
using getcwd
to obtain the canonical pathname.
LOGNAME
- The getlogin
function simply returns the value of the
LOGNAME
variable.
LD_PRELOAD
- Colon-separated list of shared libraries that will be
preloaded by the dynamic linker before processing the application's
dependency list. Components can be absolute or relative pathnames or
filenames in the default library search path. This variable is
completely ignored in programs invoked setuid, setgid, or with other
elevated capabilities.
LD_LIBRARY_PATH
- Colon-separated list of pathnames that will be
searched for shared libraries requested without an explicit
pathname. This path is searched prior to the default path (which is
specified in $(syslibdir)/../etc.ld-musl-$(ARCH).path
with
built-in default fallback if this file is missing). This variable is
completely ignored in programs invoked setuid, setgid, or with other
elevated capabilities.
LC_ALL
, LC_CTYPE
, LC_NUMERIC
, LC_TIME
, LC_COLLATE
,
LC_MONETARY
, LC_MESSAGES
, and LANG
- Used by setlocale
and
newlocale
to determine a locale name to use when a zero-length
string is passed. The precedence rules follow POSIX: LC_ALL
overrides category-specific variables, and LANG
provides a default
for any category not set.
MUSL_LOCPATH
- Colon-separated list of paths that will be searched
for locale definitions. The requested locale name string will used
as a filename and searched in each path component. If unset, locale
files are not loaded and only the "C" locale is available. This
variable is completely ignored in programs invoked setuid, setgid,
or with other elevated capabilities.
All public interfaces in musl, at both the header file and library
level, are intended to be mostly compatible with any C99, C11, or C++
compiler targeting the same CPU architecture and ABI musl was built
for. C89 compilers are also supported provided that they accept the
long long
type and wide character literals as extensions. A few
public header files do, however, require compiler-specific extensions
in order to provide the mandated standard features:
complex.h
requires 1.0fi
to be accepted as a constant expression
suitable for defining _Complex_I
.
tgmath.h
requires the __typeof__
extension. Future versions may
offer a portable C11 version of tgmath.h
using _Generic
as well.
stdarg.h
requires the __builtin_va_list
type and related builtin
functions.
netinet/tcp.h
requires anonymous unions, available in C11 and as
an extension in GCC and compatible compilers, in the default feature
profile. In strict ISO C and POSIX profiles, anonymous unions are
not needed.
In addition, the definitions of NAN
(in math.h
) and offsetof
(in
stddef.h
) require the __builtin_nanf
and __builtin_offsetof
extensions, respectively, to provide fully conforming definitions.
When used with compilers which do not predefine __GNUC__
, these
headers will fallback to alternate definitions.
Any C program using a library, whether the standard library or a third-party library, needs to observe a contract with the library regarding usage of identifiers - in particular, which identifiers are used as part of the library's public interface or header file implementation, and which identifiers are used by the application. Having a clear contract is especially important when the library being used is not a single fixed implementation, but may have multiple versions or multiple independent implementations. The canonical example of such a library is the standard library.
ISO C reserves all identifiers which are not explicitly defined or reserved by the standard for use by the application. POSIX, however, exposes a number of additional identifiers, and popular extensions outside of the standards define even more. In order to support applications which are written with different expectations on which identifiers may be used for the application's purposes, and which ones are defined by the system, a mechanism must be provided for choosing which contract will be used.
To solve this problem, POSIX introduced the concept of feature test
macros. These are macros which an application may define prior to
the inclusion of any system header (either at the source level, or
via -D
options passed as arguments to the compiler) in order to
request a particular namespace contract. POSIX 2008 specifies two such
feature test macros:
_POSIX_C_SOURCE
, defined to 200809L
to request all interfaces
defined in the POSIX base standard.
_XOPEN_SOURCE
, defined to 700
to request all interfaces defined
under the XSI option in addition to POSIX base.
No requirements are placed on the namespace when neither of these macros is defined by the application. If one or both of these macros is defined by the application, two constraints are placed on the system headers:
They must define all macros and declare all functions and objects which the standard specifies for that header to provide.
They must not make use of any identifier not specified or reserved for that header.
There is, however, an exception to the second rule: since the standard does not define behavior when the application has defined macros whose names are reserved for system use, implementations may specify their own feature test macros to expose additional identifiers alongside the standard ones.
This is what musl, and most other implementations of the standard library, do.
If no feature test macros are defined, musl's headers operate in
"default features" mode, exposing the equivalent of the _BSD_SOURCE
option below. This corresponds fairly well to what most applications
unaware of feature test macros expect, and also provides a number of
more modern features.
Otherwise, if at least one of the below-listed feature test macros is defined, they are treated additively, starting from pure ISO C as a base. Unless otherwise specified, musl ignores the value of the macro and only checks whether it is defined.
__STRICT_ANSI__
Adds nothing; only suppresses the default features. This macro is defined automatically by GCC and other major compilers in strict standards-conformance modes.
_POSIX_C_SOURCE
(or _POSIX_SOURCE
)
As specified by POSIX 2008; adds POSIX base. If defined to a value
less than 200809L
, or if the deprecated version _POSIX_SOURCE
is defined at all, interfaces which were removed from the standard
but which are still in widespread use are also exposed.
_XOPEN_SOURCE
As specified by POSIX 2008; adds all interfaces in POSIX including
the XSI option. If defined to a value less than 700
, interfaces
which were removed from the standard but which are still in
widespread use are also exposed.
_BSD_SOURCE
(or _DEFAULT_SOURCE
)
Adds everything above, plus a number of traditional and modern interfaces modeled after BSD systems, or supported on current BSD systems based on older standards such as SVID.
_GNU_SOURCE
(or _ALL_SOURCE
)
Adds everything above, plus interfaces modeled after GNU libc extensions and interfaces for making use of Linux-specific features.
Documentation of specific extensions provided by the nonstandard feature test macros will be added in a future edition of this manual.
For all interfaces provided by musl that are specified by standards to which musl aims for conformance, the relevant standards documents are the official documentation.
The latest draft of the C11 standard, without TC1 applied, is available from http://www.open-std.org as document WG14 N1570.
The POSIX 2008 standard with TC1 applied is available from The Open Group at http://pubs.opengroup.org/onlinepubs/9699919799/.
This portion of the manual is incomplete. Future editions will document musl's behavior where the standards specify that it is implementation-defined, non-standard extensions musl implements, and additional properties of musl's implementation.