Skip to content

Commit

Permalink
Merge pull request #27 from alanvgreen/disasm
Browse files Browse the repository at this point in the history
common/Makefile: add source to disassembly
  • Loading branch information
tcal-x committed Mar 14, 2021
2 parents 60256dc + d38a0f4 commit f8fa72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ $(TARGET): $(OBJECTS) $(LDSCRIPTS)
$(QUIET) echo " LD $@"
$(QUIET) $(CXX) $(OBJECTS) $(LFLAGS) -o $@
$(QUIET) echo " OBJDUMP $@.dis"
$(QUIET) $(OBJDUMP) -d $(TARGET) > $(TARGET).dis
$(QUIET) $(OBJDUMP) -d -S -l $(TARGET) > $(TARGET).dis
$(QUIET) echo " OBJDUMP $@.sym"
$(QUIET) $(OBJDUMP) -s $(TARGET) > $(TARGET).sym

Expand Down

0 comments on commit f8fa72a

Please sign in to comment.