aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-05-03 12:33:02 +0900
committernsfisis <nsfisis@gmail.com>2025-05-03 12:33:02 +0900
commit9ce3df64bad7fa430eef153b0e62b0eb894c0ed5 (patch)
treec2432a573625302089307447e560ce9ff8aae204
parentef07eff322a31ce0164283b531606e2827a64ded (diff)
downloadP4Dcc-9ce3df64bad7fa430eef153b0e62b0eb894c0ed5.tar.gz
P4Dcc-9ce3df64bad7fa430eef153b0e62b0eb894c0ed5.tar.zst
P4Dcc-9ce3df64bad7fa430eef153b0e62b0eb894c0ed5.zip
enable debuginfo
-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