projects
/
platform
/
upstream
/
coreclr.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Limit the libcoreclr.so exports to the required minimum
[platform/upstream/coreclr.git]
/
generateversionscript.awk
1
BEGIN {
2
print "V1.0 {";
3
print " global:";
4
}
5
{
6
# Remove the CR character in case the sources are mapped from
7
# a Windows share and contain CRLF line endings
8
gsub(/\r/,"", $0);
9
print " " $0 ";";
10
}
11
END {
12
print " local: *;"
13
print "};";
14
}