2003-08-06 03:40:12 +02:00
|
|
|
#!/bin/sh -x
|
2002-01-13 21:03:03 +01:00
|
|
|
# speclib - Make a special version of the cygwin import library.
|
|
|
|
#
|
|
|
|
# Copyright 2001, 2002 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Cygwin.
|
|
|
|
#
|
|
|
|
# This software is a copyrighted work licensed under the terms of the
|
|
|
|
# Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
# details.
|
|
|
|
|
2001-12-31 04:19:29 +01:00
|
|
|
case "$1" in
|
2003-08-06 03:40:12 +02:00
|
|
|
-v) shift; v() { :; } ;;
|
|
|
|
*) v() { /bin/false; } ;;
|
2001-12-31 04:19:29 +01:00
|
|
|
esac
|
|
|
|
lib=$1; shift
|
|
|
|
nm=$1; shift
|
2003-08-06 03:40:12 +02:00
|
|
|
ar=$1; shift
|
|
|
|
libdll=$1; shift
|
|
|
|
cp /dev/null /tmp/$$.objs
|
|
|
|
trap "/bin/rm -rf /tmp/$$.dir /tmp/$$.syms /tmp/$$.objs /tmp/$$.raw" 0 1 2 15
|
|
|
|
$nm --extern-only --defined-only $* | sed -e '/^[ ]*$/d' -e '/:$/d' -e 's%^.* _\(.*\)%/ __imp__\1$/p%' | grep -v ' __imp___imp__' > /tmp/$$.syms
|
|
|
|
v || $nm -Ap --extern-only --defined-only $libdll | egrep ' I __head| I _.*_iname' | awk -F: '{print $2}' > /tmp/$$.objs
|
|
|
|
$nm -Ap --extern-only --defined-only $libdll | sed -n -f /tmp/$$.syms | awk -F: '{print $2}' >> /tmp/$$.objs
|
|
|
|
sort -o /tmp/$$.objs -u /tmp/$$.objs
|
|
|
|
|
|
|
|
[ -s /tmp/$$.objs ] || { echo "speclib: couldn't find symbols for $lib" 1>&2; exit 1; }
|
|
|
|
|
|
|
|
/bin/rm -f /tmp/$$>dir
|
|
|
|
mkdir /tmp/$$.dir
|
|
|
|
cd /tmp/$$.dir
|
|
|
|
if v; then
|
|
|
|
$ar x $libdll
|
|
|
|
/bin/rm -f `cat /tmp/$$.objs`
|
|
|
|
else
|
|
|
|
$ar x $libdll `cat /tmp/$$.objs`
|
|
|
|
fi
|
|
|
|
/bin/rm -f $lib
|
|
|
|
$ar crus $lib *.o
|