Makefile: strip symbols on release build #6

Merged
frero merged 1 commits from make-release-strip-symbols into hovudgren 2026-02-12 10:25:10 +01:00

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