diff options
author | Richard Henderson <rth@cygnus.com> | 1998-10-28 14:26:24 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1998-10-28 14:26:24 -0800 |
commit | a45a7ba07385068ad1a57dbf0addf9313e1c2cff (patch) | |
tree | ada1d85ce602a4e8de5c944b8ba241de0757426f /gcc | |
parent | 79a9696b2286a2e42892818fea0c9a3af1328a91 (diff) | |
download | gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.zip gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.tar.gz gcc-a45a7ba07385068ad1a57dbf0addf9313e1c2cff.tar.bz2 |
Makefile.in (cc1plus): Put CXX_OBJS, and thence @extra_cxx_objs@, last.
* Makefile.in (cc1plus): Put CXX_OBJS, and thence @extra_cxx_objs@,
last.
From-SVN: r23414
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/Makefile.in | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 1e07758..4ae7b59 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +1998-10-29 Richard Henderson <rth@cygnus.com> + + * Makefile.in (cc1plus): Put CXX_OBJS, and thence @extra_cxx_objs@, + last. + 1998-10-28 Jason Merrill <jason@yorick.cygnus.com> * class.c (instantiate_type): Don't consider templates for a normal diff --git a/gcc/cp/Makefile.in b/gcc/cp/Makefile.in index 425bedd..9999f11 100644 --- a/gcc/cp/Makefile.in +++ b/gcc/cp/Makefile.in @@ -188,9 +188,8 @@ OBJS = `cat ../stamp-objlist` ../c-common.o ../c-pragma.o OBJDEPS = ../stamp-objlist ../c-common.o ../c-pragma.o compiler: ../cc1plus$(exeext) -../cc1plus$(exeext): $(P) $(CXX_OBJS) $(OBJDEPS) $(LIBDEPS) - $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \ - $(CXX_OBJS) $(OBJS) $(LIBS) +../cc1plus$(exeext): $(P) $(OBJDEPS) $(CXX_OBJS) $(LIBDEPS) + $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(CXX_OBJS) $(LIBS) Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure cd ..; $(SHELL) config.status |