* Makefile.in: link with libiberty after libreadline, since

readline might want something in libiberty.
This commit is contained in:
Steve Chamberlain 1991-11-08 02:58:01 +00:00
parent 0c5e9c7582
commit b715d5b4aa
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
Thu Nov 7 18:26:15 1991 Steve Chamberlain (sac at rtl.cygnus.com)
* Makefile.in: link with libiberty after libreadline, since
readline might want something in libiberty.
* m88k-xdep.c: Fixed the register offsets in the ptrace_user
struct for BCS 88k machines.
* xm-m88k.h: don't define USIZE if already defined.

View File

@ -126,7 +126,7 @@ TERMCAP = -ltermcap
# Libraries and corresponding dependencies for compiling gdb.
# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
# TERMCAP comes after readline, since readline depends on it.
CLIBS = ${BFD_LIB} ${LIBIBERTY} ${RL_LIB} ${TERMCAP} ${XM_CLIBS} ${TM_CLIBS}
CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS}
CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB}
ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}