]> sourceware.org Git - newlib-cygwin.git/commitdiff
* profile/Makefile.in (mcount,o): Use -O1 optimization
authorDanny Smith <dannysmith@users.sourceforge.net>
Fri, 14 Feb 2003 00:42:35 +0000 (00:42 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Fri, 14 Feb 2003 00:42:35 +0000 (00:42 +0000)
switch to compile.

winsup/mingw/ChangeLog
winsup/mingw/profile/Makefile.in

index 362890404c572af55db919b26f12b6fe41f539b8..de3391b1c25b15584a9191f81985a496eda4c234 100644 (file)
@@ -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>
 
        * include/math.h: Remove _CRTIMP from pow() prototype,
index c7f3a0c7f0a6bb9aa673dd4ed9c2037a65ac5d82..3fe9170de2c44d2d36eaad66e500b789afa1f8c3 100644 (file)
@@ -89,6 +89,11 @@ gcrt1.o: gcrt0.c
 gcrt2.o: gcrt0.c
        $(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
        $(SHELL) config.status
 
This page took 0.034585 seconds and 5 git commands to generate.