diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-05-24 22:22:20 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2008-05-24 22:22:20 +0000 |
commit | 8ba7d5cebbd4acf40dc8d22982baa50c2e1fd194 (patch) | |
tree | ce09df60a6357e43ff65911fc7e817bcae26486f /scripts | |
parent | e96fe50f0dd8d76fabfe139b46f059e3b2373b83 (diff) |
Updated to fedora-glibc-20080524T2218cvs/fedora-glibc-2_8_90-5
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/data/localplt-sparc-linux-gnu.data | 18 | ||||
-rw-r--r-- | scripts/data/localplt-sparc64-linux-gnu.data | 20 | ||||
-rw-r--r-- | scripts/soversions.awk | 13 |
3 files changed, 51 insertions, 0 deletions
diff --git a/scripts/data/localplt-sparc-linux-gnu.data b/scripts/data/localplt-sparc-linux-gnu.data new file mode 100644 index 0000000000..5ceed16c9b --- /dev/null +++ b/scripts/data/localplt-sparc-linux-gnu.data @@ -0,0 +1,18 @@ +libc.so: _Q_add +libc.so: _Q_div +libc.so: _Q_feq +libc.so: _Q_fge +libc.so: _Q_fle +libc.so: _Q_flt +libc.so: _Q_fne +libc.so: _Q_itoq +libc.so: _Q_mul +libc.so: _Q_sub +libc.so: _Unwind_Find_FDE +libc.so: calloc +libc.so: ffs +libc.so: free +libc.so: malloc +libc.so: memalign +libc.so: realloc +libm.so: matherr diff --git a/scripts/data/localplt-sparc64-linux-gnu.data b/scripts/data/localplt-sparc64-linux-gnu.data new file mode 100644 index 0000000000..5e6e42d672 --- /dev/null +++ b/scripts/data/localplt-sparc64-linux-gnu.data @@ -0,0 +1,20 @@ +libc.so: _Qp_add +libc.so: _Qp_div +libc.so: _Qp_feq +libc.so: _Qp_fge +libc.so: _Qp_fle +libc.so: _Qp_flt +libc.so: _Qp_fne +libc.so: _Qp_itoq +libc.so: _Qp_mul +libc.so: _Qp_qtod +libc.so: _Qp_sub +libc.so: _Qp_xtoq +libc.so: _Unwind_Find_FDE +libc.so: calloc +libc.so: ffs +libc.so: free +libc.so: malloc +libc.so: memalign +libc.so: realloc +libm.so: matherr 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] } |