* Makefile.in: Avoid initial heap allocation since cygwin has its own heap.
This commit is contained in:
parent
7029e9a234
commit
88cbbd450e
|
@ -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>
|
2005-06-11 Christopher Faylor <cgf@timesys.com>
|
||||||
|
|
||||||
* fhandler_console.cc (fhandler_console::read): Fix a compiler warning.
|
* fhandler_console.cc (fhandler_console::read): Fix a compiler warning.
|
||||||
|
|
|
@ -367,7 +367,8 @@ maintainer-clean realclean: clean
|
||||||
|
|
||||||
# Rule to build cygwin.dll
|
# Rule to build cygwin.dll
|
||||||
$(TEST_DLL_NAME): $(LDSCRIPT) $(DLL_OFILES) $(DLL_IMPORTS) $(LIBSERVER) $(LIBC) $(LIBM) $(API_VER) Makefile winver_stamp
|
$(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 \
|
-e $(DLL_ENTRY) $(DEF_FILE) $(DLL_OFILES) version.o winver.o \
|
||||||
$(MALLOC_OBJ) $(LIBSERVER) $(LIBM) $(LIBC) \
|
$(MALLOC_OBJ) $(LIBSERVER) $(LIBM) $(LIBC) \
|
||||||
-lgcc $(DLL_IMPORTS)
|
-lgcc $(DLL_IMPORTS)
|
||||||
|
|
Loading…
Reference in New Issue