aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--justfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/justfile b/justfile
index c10a978..fc5249f 100644
--- a/justfile
+++ b/justfile
@@ -3,7 +3,7 @@ CFLAGS := "-Wno-builtin-declaration-mismatch"
all: build
build:
- gcc -o p4dcc main.c {{CFLAGS}}
+ gcc -g -O0 -o p4dcc main.c {{CFLAGS}}
test TESTCASE="all": build
#!/usr/bin/env bash