Browse Source

Fix debugger invocation

tags/v0.6.1
Andrew Belt 6 years ago
parent
commit
61227ad219
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      Makefile

+ 3
- 3
Makefile View File

@@ -63,13 +63,13 @@ runr: $(TARGET)


debug: $(TARGET) debug: $(TARGET)
ifdef ARCH_MAC ifdef ARCH_MAC
lldb -ex run ./$< -d
lldb --args ./$< -d
endif endif
ifdef ARCH_WIN ifdef ARCH_WIN
gdb -ex run ./$< -d
gdb --args ./$< -d
endif endif
ifdef ARCH_LIN ifdef ARCH_LIN
gdb -ex run ./$< -d
gdb --args ./$< -d
endif endif


perf: $(TARGET) perf: $(TARGET)


Loading…
Cancel
Save