Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2002-06-12 19:04:45 +0400
committerDJ Delorie <dj@redhat.com>2002-06-12 19:04:45 +0400
commit2e1c9cc889ec75925fc799e25ad4cc57405ecf06 (patch)
tree2a085747600037cc3954daf834996bd523d0830b
parentda086d020cc3fd5c0a374ca753dfb0bc62a3cda0 (diff)
* Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
-rw-r--r--ChangeLog4
-rw-r--r--Makefile.in6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ca2d693b3..27ac092f6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-06-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * Makefile.in (CFLAGS_FOR_TARGET): Add -O2.
+
2002-06-08 Jason Thorpe <thorpej@wasabisystems.com>
* configure.in (vax-*-netbsd*): Re-enable gas.
diff --git a/Makefile.in b/Makefile.in
index 9d3d67797..4a7610965 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -100,7 +100,11 @@ CXXFLAGS = -g -O2
LDFLAGS =
LIBCFLAGS = $(CFLAGS)
CFLAGS_FOR_BUILD = $(CFLAGS)
-CFLAGS_FOR_TARGET = $(CFLAGS)
+# During gcc bootstrap, if we use some random cc for stage1 then
+# CFLAGS will be just -g. We want to ensure that TARGET libraries
+# (which we know are built with gcc) are built with optimizations so
+# prepend -O2 when setting CFLAGS_FOR_TARGET.
+CFLAGS_FOR_TARGET = -O2 $(CFLAGS)
LDFLAGS_FOR_TARGET =
LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
PICFLAG =