Skip to content
Snippets Groups Projects
Commit 0f84495c authored by Micah Elizabeth Scott's avatar Micah Elizabeth Scott
Browse files

More debug targets: 'disassemble' and 'symbols'

parent badd2be6
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,10 @@ benchmark: install ...@@ -85,7 +85,10 @@ benchmark: install
clean: clean:
rm -f *.d *.o $(TARGET).elf $(TARGET).dfu $(APP_HEX) rm -f *.d *.o $(TARGET).elf $(TARGET).dfu $(APP_HEX)
objdump: $(TARGET).elf disassemble: $(TARGET).elf
$(OBJDUMP) -d $< $(OBJDUMP) -d $< | less
.PHONY: all clean install objdump benchmark symbols: $(TARGET).elf
$(OBJDUMP) -t $< | sort | less
.PHONY: all clean install disassemble symbols benchmark
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment