diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1994-03-20 23:31:15 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1994-03-20 23:31:15 +0000 |
commit | 9b4bebb2320f7e0c00bba356e403441e391db000 (patch) | |
tree | 3e9a6ebbfeb4abcb6f2e14c1436279322dde95f8 /gdb | |
parent | c05d2d43a0394809f89fb657b51d76c1105df3ce (diff) | |
download | gdb-9b4bebb2320f7e0c00bba356e403441e391db000.zip gdb-9b4bebb2320f7e0c00bba356e403441e391db000.tar.gz gdb-9b4bebb2320f7e0c00bba356e403441e391db000.tar.bz2 |
(SIMFILES): Use remote-sim.o instead of remote-sp64sim.o.
(TM_CLIBS): Define to -lm, the simulator uses the sqrt() function.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/config/sparc/sp64.mt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/config/sparc/sp64.mt b/gdb/config/sparc/sp64.mt index 278efed..af495ad 100644 --- a/gdb/config/sparc/sp64.mt +++ b/gdb/config/sparc/sp64.mt @@ -6,12 +6,15 @@ CC = gcc # Regular "have long long" detection is disabled for now. MH_CFLAGS = -DFORCE_LONG_LONG -I${srcdir}/../sim/sp64 -SIMFILES = remote-sp64sim.o ../sim/sp64/libsim.a +SIMFILES = remote-sim.o ../sim/sp64/libsim.a # solib.o and procfs.o taken out for now. We don't have shared libraries yet, # and the elf version requires procfs.o but the a.out version doesn't. # Then again, having procfs.o in a target makefile fragment seems wrong. TDEPFILES = exec.o sparc-pinsn.o sparc-tdep.o sp64-tdep.o $(SIMFILES) +# The simulator uses the sqrt() function. +TM_CLIBS = -lm + # configure.in requires "TM_FILE= ". TM_FILE= tm-sp64.h |