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:
authorCorinna Vinschen <corinna@vinschen.de>2009-11-16 11:50:07 +0300
committerCorinna Vinschen <corinna@vinschen.de>2009-11-16 11:50:07 +0300
commit969afaf753f96ac699e5ac3d02fb3d2e3c94c647 (patch)
treefae1dd9da4bb1b588bb4dc34094590076fe56a6b /winsup/cygserver/Makefile.in
parent88dc5cc365c2aba3e157d4805c8a4ec182118187 (diff)
* Makefile.in (cygserver.exe): Link with -static to avoid linking
against cygstdc++-6.dll due to references to __cxa_pure_virtual.
Diffstat (limited to 'winsup/cygserver/Makefile.in')
-rw-r--r--winsup/cygserver/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygserver/Makefile.in b/winsup/cygserver/Makefile.in
index d1bab9d5e..b4dcbfacb 100644
--- a/winsup/cygserver/Makefile.in
+++ b/winsup/cygserver/Makefile.in
@@ -69,7 +69,7 @@ libclean:
fullclean: clean libclean
cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CYGWIN_OBJS)
- $(CXX) -o $@ ${wordlist 2,999,$^} -static-libgcc -L$(cygwin_build) -lntdll
+ $(CXX) -o $@ ${wordlist 2,999,$^} -static -static-libgcc -L$(cygwin_build) -lntdll
$(cygwin_build)/%.o: $(cygwin_source)/%.cc
@$(MAKE) -C $(@D) $(@F)