Browse Source

Fix debugger invocation

pull/1639/head
Andrew Belt 7 years ago
parent
commit
805402a299
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)
ifdef ARCH_MAC
lldb -ex run ./$< -d
lldb --args ./$< -d
endif
ifdef ARCH_WIN
gdb -ex run ./$< -d
gdb --args ./$< -d
endif
ifdef ARCH_LIN
gdb -ex run ./$< -d
gdb --args ./$< -d
endif

perf: $(TARGET)


Loading…
Cancel
Save