diff options
author | Per Bothner <bothner@cygnus.com> | 1998-09-21 13:12:10 +0000 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1998-09-21 06:12:10 -0700 |
commit | 5225130d3947153492247f344964f33b4128f50a (patch) | |
tree | a1009f5a880692afbe350ad895426edf3a790849 /gcc | |
parent | 724001bbb3145dc9d2ed7afdc12ccda221208d06 (diff) | |
download | gcc-5225130d3947153492247f344964f33b4128f50a.zip gcc-5225130d3947153492247f344964f33b4128f50a.tar.gz gcc-5225130d3947153492247f344964f33b4128f50a.tar.bz2 |
Make-lang.in (c++-filt): Link libiberty.a after cxxmain.o.
�
* Make-lang.in (c++-filt): Link libiberty.a after cxxmain.o.
From-SVN: r22527
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index df110e7..40293b8 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +1998-09-21 Per Bothner <bothner@cygnus.com> + + * Make-lang.in (c++-filt): Link libiberty.a after cxxmain.o. + Mon Sep 21 01:53:05 1998 Felix Lee <flee@cygnus.com> * lex.c (init_lex): Use getenv ("LANG"), not GET_ENVIRONMENT (). diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 70e1459..320ffc3 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -110,8 +110,8 @@ cxxmain.o: $(srcdir)/../libiberty/cplus-dem.c demangle.h -DVERSION=\"$(version)\" cxxmain.c $(DEMANGLER_PROG): cxxmain.o underscore.o getopt.o getopt1.o $(LIBDEPS) - $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(LIBS) -o $@ \ - cxxmain.o underscore.o getopt.o getopt1.o + $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \ + cxxmain.o underscore.o getopt.o getopt1.o $(LIBS) CXX_SRCS = $(srcdir)/cp/call.c $(srcdir)/cp/decl2.c \ $(srcdir)/cp/except.c $(srcdir)/cp/input.c $(srcdir)/cp/pt.c \ |