* Makefile.in: Avoid initial heap allocation since cygwin has its own heap.

This commit is contained in:
Christopher Faylor 2005-06-11 21:00:23 +00:00
parent 7029e9a234
commit 88cbbd450e
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-06-11 Christopher Faylor <cgf@timesys.com>
* Makefile.in: Avoid initial heap allocation since cygwin has its own
heap.
2005-06-11 Christopher Faylor <cgf@timesys.com>
* fhandler_console.cc (fhandler_console::read): Fix a compiler warning.

View File

@ -367,7 +367,8 @@ 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) -Wl,--gc-sections $(nostdlib) -Wl,-T$(firstword $^) -Wl,--out-implib,cygdll.a -shared -o $@ \
$(CXX) $(CXXFLAGS) -Wl,--gc-sections $(nostdlib) -Wl,-T$(firstword $^) \
-Wl,--heap=0 -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)