diff options
author | Christopher Faylor <me@cgf.cx> | 2001-04-09 00:44:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-04-09 00:44:25 +0000 |
commit | aa970c616cd499b5bcf88c7f44c3b17ad7c45e4d (patch) | |
tree | 0f9bf362c483545aeac2320b898e6124d0112269 /winsup/cygwin/Makefile.in | |
parent | 97101b51aa80376f27d2e86d4c78d7ffeaf41681 (diff) | |
download | cygnal-aa970c616cd499b5bcf88c7f44c3b17ad7c45e4d.tar.gz cygnal-aa970c616cd499b5bcf88c7f44c3b17ad7c45e4d.tar.bz2 cygnal-aa970c616cd499b5bcf88c7f44c3b17ad7c45e4d.zip |
* Makefile.in: Put -lgcc last in list of libraries, since stdc++ library needs
it.
* cygwin.din: Remove obsolete "__empty" export.
* exceptions.cc (call_signal_handler_now): Force inclusion of function even
when -finline-functions is specified.
* sigproc.h: Remove obsolete call_signal_handler declaration.
* fhandler_console.cc (cp_get_internal): New function.
(cp_convert): New function.
(con_to_str): New function.
(str_to_con): New function.
(fhandler_console::read): Replace OemToCharBuff with con_to_str.
(fhandler_console::write_normal): Replace CharToOemBuff with str_to_con.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index d7d6e8464..456c89426 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -190,7 +190,7 @@ new-$(LIB_NAME): $(LIB_NAME) new-$(DLL_NAME): $(DLL_OFILES) $(DEF_FILE) $(DLL_IMPORTS) $(LIBC) $(LIBM) Makefile winver_stamp $(CXX) $(CXXFLAGS) -nostdlib -Wl,-shared -o $@ -e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o \ - winver.o $(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) -lgcc -lstdc++ -lshell32 -luuid + winver.o $(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) -lstdc++ -lshell32 -luuid -lgcc dll_ofiles: $(DLL_OFILES) |