From 3c8d72f8d84c9b006a689e0a99103f5a68f0773a Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 12 Feb 2026 12:57:38 +0900 Subject: [PATCH] Makefile: strip symbols on release build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 745dd06..d06b199 100644 --- a/Makefile +++ b/Makefile @@ -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 -- 2.52.0