initial import from Debian

version 1.2.5-3
This commit is contained in:
2025-07-19 11:06:09 +03:00
commit ddd46d4ba4
37 changed files with 2846 additions and 0 deletions

33
debian/man/ld-musl-config.8 vendored Normal file
View File

@@ -0,0 +1,33 @@
.TH "ld-musl-config" "8" "September 17, 2013" "Linux" "System Manager's Manual"
.SH "NAME"
\fBld-musl-config\fP
\- configures musl dynamic linker path's
.SH "SYNOPSIS"
\fBld-musl-config\fP
.SH "DESCRIPTION"
\fBld-musl-config\fP
reads in all config files found under
\fI/etc/ld-musl-$ARCH.d,\fP
and creates a concatenated linker path config file in
.sp
\fI/etc/ld-musl-$ARCH.path\fP
This file will be used by the musl dynamic run-time linker.
.sp
Paths can either be separated with a newlines or with a ':' character.
.sp
ld-musl-config can be called at any time to regenerate the linker path config file. The previous config will be overwritten.
.SH "FILES"
.TP
\fI/etc/ld-musl-$ARCH.path\fP
Generated by
\fBld-musl-config\fP
and contains an ordered list of library path's.
.TP
\fI/etc/ld-musl-$ARCH.d/*\fP
Path config files to be read in by ld-musl-config.
.SH "AUTHORS"
Kevin Bortis <pkgs@bortis.ch>.
.sp
\fBld-musl-config\fP
was written by
Kevin Bortis <pkgs@bortis.ch>.

34
debian/man/musl-gcc.1 vendored Normal file
View File

@@ -0,0 +1,34 @@
.TH "musl-gcc" "1" "August 23, 2013" "Linux" "General Commands Manual"
.nh
.if n .ad l
.SH "NAME"
\fBmusl-gcc\fR
\- musl wrapper for gcc
.SH "SYNOPSIS"
.HP 9n
\fBmusl-gcc\fR
[OPTION...]
\fIFILENAME...\fR
.SH "DESCRIPTION"
\fBmusl-gcc\fR
acts as a wrapper around
gcc(1)
which sets the correct system include paths for linking with musl libc library.
.sp
Since
\fBmusl-gcc\fR
is a simple wrapper around
gcc(1)
it uses the same command line arguments.
.SH "FILES"
\fI/usr/lib/$ARCH-linux-musl/musl-gcc.specs\fR
musl-gcc spec file that defines new/overwritten include paths.
.SH "SEE ALSO"
gcc(1)
.SH "AUTHORS"
Kevin Bortis <pkgs@bortis.ch>.
.sp
\fBmusl-gcc\fR
was written by
.br
Rich Felker <dalias@aerifal.cx>

20
debian/man/musl-ldd.1 vendored Normal file
View File

@@ -0,0 +1,20 @@
.TH "musl-ldd" "1" "February 23, 2014" "Linux" "General Commands Manual"
.nh
.if n .ad l
.SH "NAME"
\fBmusl-ldd\fR
\- print musl shared library dependencies
.SH "SYNOPSIS"
.HP 9n
\fBmusl-ldd\fR
\fIFILENAME...\fR
.SH "DESCRIPTION"
\fBmusl-ldd\fR
prints the shared libraries required by the given program or shared library that is dynamicaly linked to the musl libc.
.SH "AUTHORS"
Kevin Bortis <pkgs@bortis.ch>.
.sp
\fBmusl\fR
was written by
.br
Rich Felker <dalias@aerifal.cx>