summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2008-05-22 00:03:36 +0000
committerRoland McGrath <roland@gnu.org>2008-05-22 00:03:36 +0000
commit6fa165975fcfc758243633559b0022f2d1f4acfe (patch)
treeeed5929f76dc3bb4c2d020132432e2710eadcee1 /scripts
parente92799fc450f529c860fefe3068df782b7041b9b (diff)
2008-05-21 Roland McGrath <roland@redhat.com>
* scripts/soversions.awk: Grok ABI line. * Makeconfig ($(common-objpfx)soversions.mk): Likewise. Emit definition for abi-name variable.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/soversions.awk13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/soversions.awk b/scripts/soversions.awk
index 32ce076ba9..55577ccc7e 100644
--- a/scripts/soversions.awk
+++ b/scripts/soversions.awk
@@ -18,6 +18,16 @@ $2 ~ /WORDSIZE[3264]/ {
next;
}
+$2 == "ABI" {
+ if ((config ~ thiscf) && !abiname) {
+ abiname = $3;
+ sub(/@CPU@/, cpu, abiname);
+ sub(/@VENDOR@/, vendor, abiname);
+ sub(/@OS@/, os, abiname);
+ }
+ next;
+}
+
# Obey the first matching DEFAULT line.
$2 == "DEFAULT" {
$1 = $2 = "";
@@ -66,6 +76,9 @@ END {
}
}
}
+ if (abiname) {
+ print "ABI", abiname
+ }
for (c in lines) {
print lines[c]
}