diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-27 22:48:49 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-27 22:48:49 +0000 |
commit | abbedc3f813d5772944b744f6956772b04518424 (patch) | |
tree | 79c81b013173c68f36710f3872c852ce5692d95b | |
parent | 4881449817f36dd3c26df8f00a6e048f11990c3a (diff) | |
download | glibc-abbedc3f813d5772944b744f6956772b04518424.tar glibc-abbedc3f813d5772944b744f6956772b04518424.tar.gz glibc-abbedc3f813d5772944b744f6956772b04518424.tar.bz2 glibc-abbedc3f813d5772944b744f6956772b04518424.zip |
2003-03-27 Roland McGrath <roland@redhat.com>
* scripts/rpm2dynsym.sh: New file.
* Makefile (distribute): Add it.
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | scripts/rpm2dynsym.sh | 36 |
2 files changed, 39 insertions, 1 deletions
@@ -283,7 +283,9 @@ distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \ gen-sorted.awk abi-versions.awk abilist.awk \ firstversions.awk documented.sh cpp \ output-format.sed gen-as-const.awk \ - merge-abilist.awk extract-abilist.awk) \ + merge-abilist.awk extract-abilist.awk \ + rpm2dynsym.sh \ + ) $(wildcard abilist/*.abilist) distribute := $(strip $(distribute)) diff --git a/scripts/rpm2dynsym.sh b/scripts/rpm2dynsym.sh new file mode 100755 index 0000000000..ce3fc4030a --- /dev/null +++ b/scripts/rpm2dynsym.sh @@ -0,0 +1,36 @@ +#!/bin/sh + +# This script takes rpm package files, finds *.so.N files in them, +# and runs objdump --dynamic-syms on them. The arguments are rpm file +# names. For each rpm, it creates an output file with the name +# "NAME-VERSION-RELEASE.ARCH.dynsym", the variable parts being extracted +# from the rpm's headers (not its file name). Each file contains the +# collected objdump output for all the *.so.N files in the corresponding rpm. +# This can be processed with abilist.awk or sent to someone who will do that. +# This does not do a lot of error-checking, so you should always watch stderr +# and sanity-check the resulting output files. + +RPM=${RPM:-rpm} +RPM2CPIO=${RPM2CPIO:-rpm2cpio} +CPIO=${CPIO:-cpio} +OBJDUMP=${OBJDUMP:-objdump} + +unpackdir=/tmp/rpm2dynsym$$ +trap 'rm -rf $unpackdir' 0 1 2 15 + +for rpm; do + name=`$RPM -qp $rpm --queryformat '%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n'` + mkdir $unpackdir || exit + $RPM2CPIO "$rpm" | { + cd $unpackdir + $CPIO -i -d --no-absolute-filenames -uv '*.so.*' '*.so' 2>&1 | + while read file b; do + test x"$b" = x || break + case "$file" in + *.so.[0-9]*) $OBJDUMP --dynamic-syms $file ;; + esac + done + } > $name.dynsym + echo wrote $name.dynsym for $rpm + rm -rf $unpackdir +done |