Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-01-22 04:40:11 +0300
committerChristopher Faylor <me@cgf.cx>2002-01-22 04:40:11 +0300
commit51076b73607c16e0403dca41ddcf58ca64627b55 (patch)
treeae9f548c08e3a14a54c9c11cc4523b5940f56d91 /winsup/cygwin/speclib
parent2290b866373c35d61a14da48b215b188db89ba9e (diff)
* 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-xwinsup/cygwin/speclib3
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"