Fix canadian-cross build problem with haifa scheduler.
authorJim Wilson <wilson@cygnus.com>
Thu, 17 Dec 1998 12:35:30 +0000 (12:35 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Thu, 17 Dec 1998 12:35:30 +0000 (04:35 -0800)
* Makefile.in (INTERNAL_CFLAGS): Add SCHED_CFLAGS.
(ALL_CFLAGS): Delete SCHED_CFLAGS.

From-SVN: r24360

gcc/ChangeLog
gcc/Makefile.in

index 6447f441f1b80bcb27abd8cfac8fe6a462cac9ed..e675836779291c7be16368b11424624b4f4b7fdb 100644 (file)
@@ -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.
index 28a58c58f90823e24d4d69d5dc329d77edd68aa6..460bf237aedcdc4e429606a55383616f3d25503c 100644 (file)
@@ -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)