aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-01-03 14:23:39 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2001-01-03 14:23:39 +0000
commit7ccb4206d1b9e5066e099c54eda4eeb7e20a2b12 (patch)
tree8f526fbb1206aaa2699a6c0aa0b72fd033acb6c5
parent2be28ee21bfcd151e5753eeab602bd42c5adeb05 (diff)
downloadgcc-7ccb4206d1b9e5066e099c54eda4eeb7e20a2b12.zip
gcc-7ccb4206d1b9e5066e099c54eda4eeb7e20a2b12.tar.gz
gcc-7ccb4206d1b9e5066e099c54eda4eeb7e20a2b12.tar.bz2
build-make (HOST_CFLAGS): Added `-DGENERATOR_FILE'.
* build-make (HOST_CFLAGS): Added `-DGENERATOR_FILE'. * Makefile.in (HOST_CFLAGS): Mention build-make. From-SVN: r38657
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in4
-rw-r--r--gcc/build-make3
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d73f68c..900ee74 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jan 3 12:22:32 2001 Alexandre Oliva <aoliva@redhat.com>
+
+ * build-make (HOST_CFLAGS): Added `-DGENERATOR_FILE'.
+ * Makefile.in (HOST_CFLAGS): Mention build-make.
+
Wed Jan 3 08:53:50 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* config/sparc/sparc.md (nonlocal_goto): Emit goto_handler_and_restore
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 2e76bed..f6cb44fc 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1,6 +1,6 @@
# Makefile for GNU C compiler.
# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995
-# 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+# 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
#This file is part of GNU CC.
@@ -502,6 +502,8 @@ HOST_PREFIX=
# out of the way of the other rules for compiling the same source files.
HOST_PREFIX_1=loser-
HOST_CC=$(CC)
+# If you change any of the following variables, check whether a
+# similar change is needed in build-make.
HOST_CFLAGS=$(ALL_CFLAGS) -DGENERATOR_FILE
HOST_CLIB=$(CLIB)
HOST_LDFLAGS=$(LDFLAGS)
diff --git a/gcc/build-make b/gcc/build-make
index 1e40dd7..1e453a0 100644
--- a/gcc/build-make
+++ b/gcc/build-make
@@ -11,7 +11,8 @@ CC = gcc -b $(host)
HOST_PREFIX=l-
HOST_PREFIX_1=$(HOST_PREFIX)
HOST_CC=$(CC) -b $(build)
-HOST_CFLAGS=$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
+HOST_CFLAGS=$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) \
+ -DGENERATOR_FILE
HOST_CLIB=
HOST_LDFLAGS=$(LDFLAGS)
HOST_CPPFLAGS=$(ALL_CPPFLAGS)