Makefile: strip symbols on release build

This commit is contained in:
2026-02-12 12:57:38 +09:00
parent 071d511e89
commit 4eb0df65e8

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
SOURCE_FOLDER = src