Skip to content

Commit

Permalink
Fix debug_rom.S build command error.
Browse files Browse the repository at this point in the history
Previously gcc would complain that link.lds was mentioned twice (once on
the command line and once with a -T directive.)
  • Loading branch information
timsifive committed Jul 30, 2022
1 parent cdc05e6 commit c274695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debug_rom/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c274695

Please sign in to comment.