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)
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