forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
produce-lists
44 lines (36 loc) · 995 Bytes
/
produce-lists
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh
#
# Produces two lists in docscripts:
# public-api with the public API except the Wapi
# wapi the public WAPI API
#
dir=`dirname $0`
add_h4()
{
sed -e 's/^\t<h4>//' -e 's/$/<\/h4>/'
}
ignore_known()
{
fgrep -v -f $dir/ignore
}
ignore_hidden ()
{
fgrep -w -v -f $dir/hidden_methods
}
clean_nm ()
{
grep ' T ' | sed 's/.* T //'
}
ignore_wapi ()
{
grep -v _wapi | fgrep -v -f $dir/wapi
}
if grep ^$ ignore >/dev/null; then
echo The ignore file contains empty lines, which breaks this script, please remove
echo the empty lines.
exit 1
fi
# generate the internals file
objdump -t ../mono/mini/.libs/libmono-2.0.a | grep "\.hidden" | sed 's/.*\.hidden //' > hidden_methods
nm $dir/../mono/io-layer/.libs/*.o | clean_nm | grep -v _wapi | ignore_known | sort > $dir/wapi
nm $dir/../mono/mini/.libs/libmono-2.0.a | clean_nm | ignore_known | ignore_hidden | ignore_wapi | grep -v ^ves_icall | egrep -v '^(mono_arch_|monoeg)' | sort > $dir/public-api