diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-05-05 12:46:25 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-05-05 12:46:25 +0000 |
commit | 3971886ac1616c4125531e42a884f031e27f7e21 (patch) | |
tree | 1a3e5f5227febd8d8bca79acd070a64afe4ee1eb /sim/tic80/Makefile.in | |
parent | 04a7708a32d9cfae136bfcb879b70160caeb6f3f (diff) | |
download | gdb-3971886ac1616c4125531e42a884f031e27f7e21.zip gdb-3971886ac1616c4125531e42a884f031e27f7e21.tar.gz gdb-3971886ac1616c4125531e42a884f031e27f7e21.tar.bz2 |
Add flakey floating-point support to the TI c80 simulator.
Diffstat (limited to 'sim/tic80/Makefile.in')
-rw-r--r-- | sim/tic80/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sim/tic80/Makefile.in b/sim/tic80/Makefile.in index 3391a79..21be037 100644 --- a/sim/tic80/Makefile.in +++ b/sim/tic80/Makefile.in @@ -21,12 +21,16 @@ SIM_OBJS = sim-endian.o sim-bits.o sim-config.o interp.o \ sim-module.o \ sim-options.o \ sim-trace.o \ - sim-profile.o + sim-profile.o \ + sim-fpu.o # List of extra dependencies. # Generally this consists of simulator specific files included by sim-main.h. SIM_EXTRA_DEPS = itable.h idecode.h cpu.h alu.h +# List of extra libraries to link with +SIM_EXTRA_LIBS = -lm + # List of generators SIM_GEN=tmp-igen @@ -36,6 +40,7 @@ SIM_ENDIAN=@sim_endian@ SIM_HOSTENDIAN=@sim_hostendian@ SIM_INLINE=@sim_inline@ SIM_RESERVED_BITS=@sim_reserved_bits@ +SIM_ALIGNMENT=@sim_alignment@ SIM_EXTRA_CFLAGS = \ $(SIM_WARNINGS) \ |