* profile/Makefile.in (mcount,o): Use -O1 optimization
switch to compile.
This commit is contained in:
parent
d1d1797eb7
commit
4d658cfcd2
|
@ -1,3 +1,8 @@
|
||||||
|
2003-02-13 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* profile/Makefile.in (mcount,o): Use -O1 optimization
|
||||||
|
switch to compile.
|
||||||
|
|
||||||
2003-02-10 Danny Smith <dannysmith@users.sourceforge.net>
|
2003-02-10 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/math.h: Remove _CRTIMP from pow() prototype,
|
* include/math.h: Remove _CRTIMP from pow() prototype,
|
||||||
|
|
|
@ -89,6 +89,11 @@ gcrt1.o: gcrt0.c
|
||||||
gcrt2.o: gcrt0.c
|
gcrt2.o: gcrt0.c
|
||||||
$(CC) -D__MSVCRT__ -c -o $@ $(CPPFLAGS) $(CFLAGS) $?
|
$(CC) -D__MSVCRT__ -c -o $@ $(CPPFLAGS) $(CFLAGS) $?
|
||||||
|
|
||||||
|
#FIXME: Optimizing at higher than -O1 tweaks a bug in gcc 3.2.2
|
||||||
|
# and earlier
|
||||||
|
mcount.o: mcount.c
|
||||||
|
$(CC) -c -o $@ $(CPPFLAGS) $(CFLAGS) -O1 $?
|
||||||
|
|
||||||
Makefile: Makefile.in config.status configure
|
Makefile: Makefile.in config.status configure
|
||||||
$(SHELL) config.status
|
$(SHELL) config.status
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue