From 0278e3a33faafdb796945dbb196a78d6ed312f37 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 22 Jun 2002 02:56:56 +0000 Subject: [PATCH] * Makefile.in (cygrun.exe): Move -lgcc where it will do some good. --- winsup/cygwin/ChangeLog | 4 ++++ winsup/cygwin/Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 811801915..9b4832f8b 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,7 @@ +2002-06-21 Christopher Faylor + + * Makefile.in (cygrun.exe): Move -lgcc where it will do some good. + 2002-06-21 Corinna Vinschen * syscalls.cc (stat64_to_stat32): Correctly evaluate st_rdev. diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index efabaf081..d17b23961 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -305,7 +305,7 @@ winver_stamp: mkvers.sh include/cygwin/version.h winver.rc $(DLL_OFILES) cygrun.exe : cygrun.o $(LIB_NAME) $(w32api_lib)/libuser32.a \ $(w32api_lib)/libshell32.a $(w32api_lib)/libkernel32.a - $(CC) -nodefaultlibs -o $@ $^ -lgcc + $(CC) -nodefaultlibs -o $@ -lgcc $^ cygserver_transport_outside.o: cygserver_transport.cc $(COMPILE_CXX) -D__OUTSIDE_CYGWIN__ -o $@ $<