diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-12-17 12:35:30 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-12-17 04:35:30 -0800 |
commit | 2df8df36a2e95910faaca47a8990e6ad5f8fa859 (patch) | |
tree | 0f16d38c101f66ffd0ff9cbf3ae2a47ef7d27bcc /gcc | |
parent | 6f7dec611769224b15f0be078026e447af9829ef (diff) | |
download | gcc-2df8df36a2e95910faaca47a8990e6ad5f8fa859.zip gcc-2df8df36a2e95910faaca47a8990e6ad5f8fa859.tar.gz gcc-2df8df36a2e95910faaca47a8990e6ad5f8fa859.tar.bz2 |
Fix canadian-cross build problem with haifa scheduler.
* Makefile.in (INTERNAL_CFLAGS): Add SCHED_CFLAGS.
(ALL_CFLAGS): Delete SCHED_CFLAGS.
From-SVN: r24360
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6447f44..e675836 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 17 12:31:12 1998 Jim Wilson <wilson@cygnus.com> + + * Makefile.in (INTERNAL_CFLAGS): Add SCHED_CFLAGS. + (ALL_CFLAGS): Delete SCHED_CFLAGS. + Thu Dec 17 08:27:03 1998 J"orn Rennecke <amylaar@cygnus.co.uk> * loop.c (combine_givs_used_by_other): Don't depend on n_times_set. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 28a58c5..460bf23 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -530,11 +530,13 @@ all: all.indirect all.indirect: $(ALL) # IN_GCC tells various files that system.h, toplev.c, etc are available. -INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@ +INTERNAL_CFLAGS = $(CROSS) -DIN_GCC $(SCHED_CFLAGS) @extra_c_flags@ # This is the variable actually used when we compile. +# If you change this line, you probably also need to change the definition +# of HOST_CFLAGS in build-make to match. ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) \ - @DEFS@ $(SCHED_CFLAGS) + @DEFS@ # Likewise. ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS) |