diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-22 01:40:11 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-22 01:40:11 +0000 |
commit | 51076b73607c16e0403dca41ddcf58ca64627b55 (patch) | |
tree | ae9f548c08e3a14a54c9c11cc4523b5940f56d91 /winsup/cygwin/speclib | |
parent | 2290b866373c35d61a14da48b215b188db89ba9e (diff) | |
download | cygnal-51076b73607c16e0403dca41ddcf58ca64627b55.tar.gz cygnal-51076b73607c16e0403dca41ddcf58ca64627b55.tar.bz2 cygnal-51076b73607c16e0403dca41ddcf58ca64627b55.zip |
* Makefile.in (libpthread.a): Pass the assembler also.
(libm.a): Ditto.
(libc.a): Ditto.
* speclib: Specify the assembler to dlltool.
Diffstat (limited to 'winsup/cygwin/speclib')
-rwxr-xr-x | winsup/cygwin/speclib | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/speclib b/winsup/cygwin/speclib index 40472045b..a5ce7f46b 100755 --- a/winsup/cygwin/speclib +++ b/winsup/cygwin/speclib @@ -15,8 +15,9 @@ esac lib=$1; shift nm=$1; shift dlltool=$1; shift +as=$1; shift def=$1; shift trap "rm /tmp/$$.def" 0 1 2 15 (echo "LIBRARY cygwin1.dll EXPORTS"; $nm --extern-only --defined-only $* | sed -e '/^[ ]*$/d' -e '/:$/d' -e 's/^.* _\(.*\)/\1/' | grep $v -f - -w $def |egrep -vi '^library|exports|^$' | sort) > /tmp/$$.def -exec $dlltool -d /tmp/$$.def -l "$lib" +exec $dlltool --as=$as -d /tmp/$$.def -l "$lib" |