6 ( cd $MUSL; git log
-n1 ) |
awk '
12 commit = "<h4>commit</h4><p>commit <a href=\"http://git.musl-libc.org/cgit/musl/commit/?id=" hash "\">" hash "</a>"
14 commit = commit "<br>" $0
19 syms = "data/musl.syms"
20 tags = "data/musl.tags"
22 while (getline < syms == 1)
24 while (getline < tags == 1) {
28 s = "<a href=\"http://git.musl-libc.org/cgit/musl/tree/include/" $2 "#n" $4 "\">" $3 "</a> "
29 kind[$1] = kind[$1] $3
30 kindstr[$1] = kindstr[$1] s
33 legend = "<h4>legend</h4><ul><li>status: musl implementation status summary<ul>"
34 legend = legend "<li>(empty) - implemented"
35 legend = legend "<li>nosym - prototype found in include files (see decl) but not in libc.a (see sym)"
36 legend = legend "<li>nodecl - symbol is in libc.a but not declared in a public header"
37 legend = legend "<li>missing - neither in include files (see decl) nor in libc.a (see sym)"
38 legend = legend "</ul><li>sym: external symbol kind as found by `nm libc.a` (symbol kind only reported once)<ul>"
39 legend = legend "<li>C - symbol is common (uninitialized data)"
40 legend = legend "<li>D - symbol is in the initialized data section"
41 legend = legend "<li>R - symbol is in the read only data section"
42 legend = legend "<li>T - symbol is in the text section"
43 legend = legend "<li>V - weak object"
44 legend = legend "<li>W - weak symbol"
45 legend = legend "</ul><li>decl: kind of declaration as found by `ctags -R include` (every occurance is reported, arch specific definitions are not linked)<ul>"
46 legend = legend "<li>d - macro definition"
47 legend = legend "<li>t - typedef"
48 legend = legend "<li>s - struct declaration"
49 legend = legend "<li>u - union declaration"
50 legend = legend "<li>p - function prototype"
51 legend = legend "<li>x - external and forward variable declaration"
52 legend = legend "</ul></ul>"
54 print "<h3>musl vs c99 api</h3>"
57 print "<h4>table</h4><table border=1><tr><th colspan=3>musl<th colspan=4>c99<tr><th>status<th>sym<th>decl<th>name<th>header<th>proto<th>section"
58 nodecl = nosym = missing = 0
59 while (getline < c99 == 1) {
61 if (sym[$1] && kind[$1]) {
66 } else if (kind[$1] ~ /[dtsue]/) {
68 } else if (kind[$1]) {
78 s = s "<td>" kindstr[$1]
92 print "<h4>stats</h4><ul><li>missing: " missing "<li>nosym: " nosym "<li>nodecl: " nodecl "</ul>"