aboutsummaryrefslogtreecommitdiff
path: root/debug_rom
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2022-07-30 10:22:47 -0700
committerTim Newsome <tim@sifive.com>2022-07-30 10:22:47 -0700
commitc274695b204ce271d0fa272c8b8ff4d02b55f709 (patch)
treee0c64c1680cae58bb77003a21466f0876a52a54e /debug_rom
parentcdc05e6719f30e6e9192dc92f8cd8d5b22f53417 (diff)
downloadriscv-isa-sim-c274695b204ce271d0fa272c8b8ff4d02b55f709.zip
riscv-isa-sim-c274695b204ce271d0fa272c8b8ff4d02b55f709.tar.gz
riscv-isa-sim-c274695b204ce271d0fa272c8b8ff4d02b55f709.tar.bz2
Fix debug_rom.S build command error.
Previously gcc would complain that link.lds was mentioned twice (once on the command line and once with a -T directive.)
Diffstat (limited to 'debug_rom')
-rw-r--r--debug_rom/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_rom/Makefile b/debug_rom/Makefile
index c5f2205..d6546e9 100644
--- a/debug_rom/Makefile
+++ b/debug_rom/Makefile
@@ -18,7 +18,7 @@ all: $(patsubst %,%.h,$(ELFS))
$(OBJCOPY) -O binary --only-section .text $^ $@
debug_rom: $(DEPS)
- $(COMPILE) -o $@ $^
+ $(COMPILE) -o $@ $<
clean:
rm -f $(ELFS) debug_rom*.raw debug_rom.h