From 61227ad219be13cec25e381aa68448bbe99adb9d Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 18 Jun 2018 05:12:24 -0400 Subject: [PATCH] Fix debugger invocation --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 21be10d7..05cf01b5 100644 --- a/Makefile +++ b/Makefile @@ -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)