|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| arch/ | | 12-May-2024 | - | 19,895 | 18,028 |
| compat/time32/ | | 12-May-2024 | - | 1,105 | 934 |
| crt/ | | 12-May-2024 | - | 413 | 340 |
| dist/ | | 12-May-2024 | - | 37 | 25 |
| fuzztest/ | | 12-May-2024 | - | 169 | 103 |
| include/ | | 12-May-2024 | - | 17,201 | 14,150 |
| ldso/ | | 12-May-2024 | - | 2,464 | 2,085 |
| libc-test/ | | 12-May-2024 | - | 205,450 | 165,204 |
| ndk-test/ | | 12-May-2024 | - | 4,222 | 2,831 |
| ndk_musl_include/ | | 12-May-2024 | - | 17,412 | 14,031 |
| ndk_script/ | | 12-May-2024 | - | 2,034 | 1,972 |
| porting/ | | 12-May-2024 | - | 189,305 | 153,211 |
| scripts/ | | 12-May-2024 | - | 864 | 700 |
| src/ | | 12-May-2024 | - | 78,373 | 61,748 |
| tools/ | | 12-May-2024 | - | 1,067 | 831 |
| .gitignore | D | 12-May-2024 | 61 | 9 | 8 |
| .mailmap | D | 12-May-2024 | 54 | 2 | 1 |
| BUILD.gn | D | 12-May-2024 | 12.2 KiB | 428 | 370 |
| COPYRIGHT | D | 12-May-2024 | 6 KiB | 191 | 168 |
| INSTALL | D | 12-May-2024 | 6.6 KiB | 192 | 142 |
| Makefile | D | 12-May-2024 | 7.3 KiB | 237 | 158 |
| OAT.xml | D | 12-May-2024 | 6.9 KiB | 93 | 42 |
| README.OpenSource | D | 12-May-2024 | 419 | 12 | 11 |
| README.md | D | 12-May-2024 | 1,020 | 22 | 17 |
| README_zh.md | D | 12-May-2024 | 1.7 KiB | 40 | 27 |
| VERSION | D | 12-May-2024 | 6 | 2 | 1 |
| WHATSNEW | D | 12-May-2024 | 83.5 KiB | 2,203 | 1,734 |
| bundle.json | D | 12-May-2024 | 848 | 36 | 36 |
| configure | D | 12-May-2024 | 23.8 KiB | 786 | 550 |
| dynamic.list | D | 12-May-2024 | 446 | 51 | 40 |
| libc.map.txt | D | 12-May-2024 | 33.5 KiB | 2,064 | 2,063 |
| musl_config.gni | D | 12-May-2024 | 2.1 KiB | 70 | 63 |
| musl_src.gni | D | 12-May-2024 | 57.6 KiB | 2,148 | 2,127 |
| musl_template.gni | D | 12-May-2024 | 26.1 KiB | 931 | 824 |
README.OpenSource
1[
2 {
3 "Name" : "musl",
4 "License" : "MIT License",
5 "License File" : "COPYRIGHT",
6 "Version Number" : "1.2.0",
7 "Owner" : "jianghan2@huawei.com",
8 "Upstream URL" : "http://www.musl-libc.org/",
9 "Description" : "musl is an MIT-licensed implementation of the standard C library"
10 }
11]
12
README.md
1# musl libc
2
3musl, pronounced like the word "mussel", is an MIT-licensed
4implementation of the standard C library targetting the Linux syscall
5API, suitable for use in a wide range of deployment environments. musl
6offers efficient static and dynamic linking support, lightweight code
7and low runtime overhead, strong fail-safe guarantees under correct
8usage, and correctness in the sense of standards conformance and
9safety. musl is built on the principle that these goals are best
10achieved through simple code that is easy to understand and maintain.
11
12The 1.1 release series for musl features coverage for all interfaces
13defined in ISO C99 and POSIX 2008 base, along with a number of
14non-standardized interfaces for compatibility with Linux, BSD, and
15glibc functionality.
16
17For basic installation instructions, see the included INSTALL file.
18Information on full musl-targeted compiler toolchains, system
19bootstrapping, and Linux distributions built on musl can be found on
20the project website:http://www.musl-libc.org/
21
22