From 5f06b309d7afb5ef9121eebc71dae49b543dfc50 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Fri, 12 Dec 2025 17:11:01 +0100 Subject: [PATCH] change build release stripped binary --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1607d56..c137110 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(CMAKE_BUILD_TYPE Release CACHE STRING "build type [Debug|Release]") if(CMAKE_BUILD_TYPE STREQUAL Release) - set(CMAKE_C_FLAGS "-std=c99 -fPIC -Wall -Wextra -Wno-unused-parameter -Werror -pedantic" + set(CMAKE_C_FLAGS "-std=c99 -fPIC -s -Wall -Wextra -Wno-unused-parameter -Werror -pedantic" CACHE STRING "release compiler flags" FORCE) endif() -- 2.47.3