]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
(clh 5)
authorTom Tromey <tromey@redhat.com>
Wed, 25 Sep 2013 15:52:30 +0000 (15:52 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 25 Sep 2013 15:52:30 +0000 (15:52 +0000)
From-SVN: r202894

gcc/ChangeLog
gcc/Makefile.in

index 0ddbcd5afa26d6b988b9df5ae7e93923fca56c85..0b96ec15bab30dd24d611d389ae38018780f74fa 100644 (file)
@@ -1,3 +1,9 @@
+2013-09-25  Tom Tromey  <tromey@redhat.com>
+
+       * Makefile.in (ALL_HOST_BACKEND_OBJS): Add lto-wrapper.o.
+       ($(ALL_HOST_OBJS)): Move order-only dependency to end
+       of file.
+
 2013-09-25  Tom Tromey  <tromey@redhat.com>
 
        * Makefile.in (generated_files): Add options.h,
index 62b5eab2214c6f4fd419142be2223719f605de9b..8f99a6cfa0b378c12877154a53765e3e5f1d83b4 100644 (file)
@@ -1500,7 +1500,8 @@ ALL_HOST_FRONTEND_OBJS = $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS))
 
 ALL_HOST_BACKEND_OBJS = $(GCC_OBJS) $(OBJS) $(OBJS-libcommon) \
   $(OBJS-libcommon-target) @TREEBROWSER@ main.o c-family/cppspec.o \
-  $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS)
+  $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS) \
+  lto-wrapper.o
 
 # This lists all host object files, whether they are included in this
 # compilation or not.
@@ -3899,11 +3900,6 @@ generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \
        common/common-target-hooks-def.h pass-instances.def \
        c-family/c-target-hooks-def.h
 
-# In order for parallel make to really start compiling the expensive
-# objects from $(OBJS) as early as possible, build all their
-# prerequisites strictly before all objects.
-$(ALL_HOST_OBJS) : | $(generated_files)
-
 #\f
 # How to compile object files to run on the build machine.
 
@@ -5390,3 +5386,8 @@ po/gcc.pot: force
        $(MAKE) srcextra
        AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
                $(XGETTEXT) gcc $(srcdir)
+
+# In order for parallel make to really start compiling the expensive
+# objects from $(OBJS) as early as possible, build all their
+# prerequisites strictly before all objects.
+$(ALL_HOST_OBJS) : | $(generated_files)