From: Roland McGrath Date: Thu, 22 May 2008 00:03:36 +0000 (+0000) Subject: 2008-05-21 Roland McGrath X-Git-Tag: cvs/fedora-glibc-20080524T2218~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fa165975fcfc758243633559b0022f2d1f4acfe;p=thirdparty%2Fglibc.git 2008-05-21 Roland McGrath * scripts/soversions.awk: Grok ABI line. * Makeconfig ($(common-objpfx)soversions.mk): Likewise. Emit definition for abi-name variable. --- diff --git a/Makeconfig b/Makeconfig index d269936f323..7de7621f565 100644 --- a/Makeconfig +++ b/Makeconfig @@ -826,6 +826,7 @@ $(common-objpfx)soversions.mk: $(common-objpfx)soversions.i $(..)Makeconfig (seen_DEFAULT=0; seen_WORDSIZE32=0; seen_WORDSIZE64=0; \ while read which lib number setname; do \ eval seen_$$which=1; \ + test x"$$which" != xABI || echo abi-name = "$$lib"; \ test x"$$which" = xDEFAULT || continue; \ case $$number in \ [0-9]*) echo "$$lib.so-version=.$$number"; \ diff --git a/scripts/soversions.awk b/scripts/soversions.awk index 32ce076ba99..55577ccc7e2 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] }