diff options
author | Christopher Faylor <me@cgf.cx> | 2004-05-04 15:09:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-05-04 15:09:58 +0000 |
commit | 3dcb399b58def966a940342ed3e421fdb3a8c435 (patch) | |
tree | 4993b8ad34956a8e6f8465b99a9d04a6fc3573d1 /winsup/cygwin/Makefile.in | |
parent | 423ea473f4898a97193344f13482ece1d8c31fe8 (diff) | |
download | cygnal-3dcb399b58def966a940342ed3e421fdb3a8c435.tar.gz cygnal-3dcb399b58def966a940342ed3e421fdb3a8c435.tar.bz2 cygnal-3dcb399b58def966a940342ed3e421fdb3a8c435.zip |
* path.cc (is_unc_share): Remove redundant tests.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 5f9d11b83..26764fd96 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -48,12 +48,12 @@ override INSTALL_DATA:=@INSTALL_DATA@ # MT_SAFE:=@MT_SAFE@ DEFS:=@DEFS@ - +CCEXTRA:= CC:=@CC@ # FIXME: Which is it, CC or CC_FOR_TARGET? CC_FOR_TARGET:=$(CC) CFLAGS=@CFLAGS@ -override CFLAGS+=-MMD ${$(*F)_CFLAGS} -fmerge-constants -ftracer +override CFLAGS+=-MMD ${$(*F)_CFLAGS} -fmerge-constants -ftracer $(CCEXTRA) CXX=@CXX@ CXXFLAGS=@CXXFLAGS@ @@ -362,7 +362,7 @@ maintainer-clean realclean: clean # Rule to build cygwin.dll $(TEST_DLL_NAME): $(LDSCRIPT) $(DLL_OFILES) $(DLL_IMPORTS) $(LIBSERVER) $(LIBC) $(LIBM) $(API_VER) Makefile winver_stamp - $(CXX) $(CXXFLAGS) $(nostdlib) -Wl,-T$(firstword $^) -Wl,--out-implib,cygdll.a -shared -o $@ \ + $(CXX) $(CXXFLAGS) -Wl,--gc-sections $(nostdlib) -Wl,-T$(firstword $^) -Wl,--out-implib,cygdll.a -shared -o $@ \ -e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \ $(MALLOC_OBJ) $(LIBSERVER) $(LIBM) $(LIBC) \ -lgcc $(DLL_IMPORTS) |