From: Ben Elliston Date: Mon, 14 Mar 2005 03:09:45 +0000 (+0000) Subject: * Makefile.in (CLIBS): Link libbfd after libopcodes, as it is a X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3ae642fdf3b0fd9b69e43c3243b0c05dbb918359;p=binutils-gdb.git * Makefile.in (CLIBS): Link libbfd after libopcodes, as it is a more primitive library. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a7a9353f1f9..07d7fb8c87f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2005-03-14 Ben Elliston + + * Makefile.in (CLIBS): Link libbfd after libopcodes, as it is a + more primitive library. + 2005-03-13 Mark Kettenis * inf-ttrace.c (inf_ttrace_pid_to_str): Use snprintf instead of diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b08aa4df1f5..cfc908dcaa5 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -372,7 +372,7 @@ INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_ INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \ $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \ -lintl -liberty -CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \ +CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(INTL) $(LIBIBERTY) \ $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \ $(LIBICONV) \ $(LIBIBERTY) $(WIN32LIBS)