+2003-03-28 Roland McGrath <roland@redhat.com>
+
+ * scripts/abilist.awk: When given -v combine=1, do parse_names and
+ emit a single output stream with lib name in stanza header lines.
+
+ * scripts/abilist.awk: Emit A for all *ABS* regardless of type.
+
2003-03-27 Roland McGrath <roland@redhat.com>
* sysdeps/powerpc/bits/atomic.h [! __powerpc64__]
# into a simple format that should not change when the ABI is not changing.
BEGIN {
- if (parse_names)
- defout = "/dev/stderr";
- else
- defout = "/dev/stdout";
+ if (combine_fullname)
+ combine = 1;
+ if (combine)
+ parse_names = 1;
}
# Per-file header.
if (version == "GLIBC_PRIVATE") next;
+ desc = "";
if (type == "D" && $4 == ".tbss") {
type = "T";
}
type = "O";
size = "";
}
- else if (type == "DO" && $4 == "*ABS*") {
+ else if ($4 == "*ABS*") {
type = "A";
size = "";
}
size = "";
}
else {
- print symbol, version, weak, "?", type, $4, $5 > defout;
- next;
+ desc = symbol " " version " " weak " ? " type " " $4 " " $5;
}
if (size == " 0x") {
- print symbol, version, weak, "?", type, $4, $5 > defout;
- next;
+ desc = symbol " " version " " weak " ? " type " " $4 " " $5;
}
# Disabled -- weakness should not matter to shared library ABIs any more.
#if (weak == "w") type = tolower(type);
- desc = " " symbol " " type size;
+ if (desc == "")
+ desc = " " symbol " " type size;
if (version in versions) {
versions[version] = versions[version] "\n" desc;
NF == 0 || /DYNAMIC SYMBOL TABLE/ || /file format/ { next }
{
- print "Don't grok this line:", $0 > defout
+ print "Don't grok this line:", $0
}
function emit(tofile) {
- nverlist = 0;
+ nverslist = 0;
for (version in versions) {
if (nverslist == 0) {
verslist = version;
++nverslist;
}
+ if (combine)
+ tofile = 0;
+
if (tofile) {
out = prefix soname ".symlist";
if (soname in outfiles)
close(out);
outpipe = "sort >> " out;
}
- else
+ else {
+ if (combine_fullname)
+ print prefix soname, version, sofullname;
+ else if (combine)
+ print prefix soname, version;
+ else
+ print version;
outpipe = "sort";
+ }
print versions[version] | outpipe;
close(outpipe);