Makefile: strip symbols on release build

This commit was merged in pull request #6.
This commit is contained in:
2026-02-12 12:57:38 +09:00
committed by Fredrik Robertsen
parent e34c59fed4
commit 3c8d72f8d8

View File

@@ -2,7 +2,7 @@ CC = cc
CFLAGS = -std=c17
CFLAGS_WARNINGS = -Wall -Wextra
CFLAGS_RELEASE = -O2 -fstack-protector-strong -fpie
CFLAGS_RELEASE = -O2 -fstack-protector-strong -fpie -s
CFLAGS_DEBUG = -O0 -ggdb -DDEBUG -fsanitize=address -static-libasan
prefix = /usr/local