The MinGW.org Windows System Libraries
Revisão | 5c582dfd1a0d8471477ffa3a6389cccf4928df34 (tree) |
---|---|
Hora | 2014-01-28 08:25:54 |
Autor | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Remove superfluous objects from libmingwex.a; (cf. issue #2177)
@@ -1,3 +1,11 @@ | ||
1 | +2014-01-27 Thorsten Otto <thotto@users.sourceforge.net> | |
2 | + | |
3 | + Remove superfluous objects from libmingwex.a; (cf. issue #2177) | |
4 | + | |
5 | + * Makefile.in (gdtoa_SOURCES): Delete bogus entries for... | |
6 | + (arithchk.o, qnan.o): ...each of these; move their references to... | |
7 | + (ALL_SOURCES): ...this collection instead. | |
8 | + | |
1 | 9 | 2014-01-27 Keith Marshall <keithmarshall@users.sourceforge.net> |
2 | 10 | |
3 | 11 | Re-establish pattern rules for %_generic.c; (cf. issue #2175) |
@@ -326,14 +326,12 @@ SRCDIR := misc/src/libcrt/gdtoa | ||
326 | 326 | gdtoa_SOURCES := \ |
327 | 327 | $(SRCDIR)/g__fmt.c \ |
328 | 328 | $(SRCDIR)/gethex.c \ |
329 | - $(SRCDIR)/qnan.c \ | |
330 | 329 | $(SRCDIR)/strtopx.c \ |
331 | 330 | $(SRCDIR)/g_dfmt.c \ |
332 | 331 | $(SRCDIR)/gdtoa.c \ |
333 | 332 | $(SRCDIR)/gmisc.c \ |
334 | 333 | $(SRCDIR)/smisc.c \ |
335 | 334 | $(SRCDIR)/sum.c \ |
336 | - $(SRCDIR)/arithchk.c \ | |
337 | 335 | $(SRCDIR)/g_ffmt.c \ |
338 | 336 | $(SRCDIR)/hd_init.c \ |
339 | 337 | $(SRCDIR)/strtodg.c \ |
@@ -649,7 +647,9 @@ ALL_SOURCES := \ | ||
649 | 647 | $(mingwm10_dll_SOURCES) \ |
650 | 648 | $(libdinput_a_SOURCES) \ |
651 | 649 | $(libdxerr8_a_SOURCES) \ |
652 | - $(libdxerr9_a_SOURCES) | |
650 | + $(libdxerr9_a_SOURCES) \ | |
651 | + misc/src/libcrt/gdtoa/arithchk.c \ | |
652 | + misc/src/libcrt/gdtoa/qnan.c | |
653 | 653 | |
654 | 654 | all: $(extra_OBJECTS) $(msvcrt_DEF) $(moldname_DEF) $(lib_LIBRARIES) $(bin_LIBRARIES) $(lib_OBJECTS) |
655 | 655 |