]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.in: Avoid initial heap allocation since cygwin has its own heap.
authorChristopher Faylor <me@cgf.cx>
Sat, 11 Jun 2005 21:00:23 +0000 (21:00 +0000)
committerChristopher Faylor <me@cgf.cx>
Sat, 11 Jun 2005 21:00:23 +0000 (21:00 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/Makefile.in

index f9300177cf881085067b127af0e347c17ca08a8d..283bc7ff68022d3087a3fce2eea970f0710f5675 100644 (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.
index 27c8775f1c488308781115280d4000e44a1d2a4f..087289b1c14e96475dc2fcd8e18f113ab5c6eb6c 100644 (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)
This page took 0.03484 seconds and 5 git commands to generate.