summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-21 19:12:42 +1000
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-04-21 19:12:42 +1000
commita39f66727fc66f7ce7e59039a959f862b19eb745 (patch)
treeabd366ca124046e8fc605e2d04528f7b6e38741d /Makefile
parent646d8489f2136e8f1e43f4cc537bac9a8aa3f47b (diff)
feat(Makefile): Use -fno-omit-frame-pointer flag for debugging
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6c45c04..517930c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ LIB = libtinyff.a
INCLUDES = -Iinclude
BASE_CFLAGS = -Wall -Wextra -Werror -std=c11 $(INCLUDES)
-DEBUG_FLAGS = -g -O0
+DEBUG_FLAGS = -g -O0 -fno-omit-frame-pointer
RELEASE_FLAGS = -O2
SANFLAGS = -fsanitize=address,undefined -g -O1