From cec756ec751daaab57ce94e4195110e2a2ebb91e Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 30 May 2026 10:36:57 +0200 Subject: [PATCH] change no strip for debug --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 009c037..fca01d6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(mv-none-space VERSION 1.1.12) if("${CMAKE_BUILD_TYPE}" STREQUAL "Release") set(CMAKE_C_FLAGS "-s -std=c99 -Werror -Wextra -pedantic") else() - set(CMAKE_C_FLAGS "-s -std=c99 -g -Wall -Wextra -pedantic -fsanitize=address") + set(CMAKE_C_FLAGS "-std=c99 -g -Wall -Wextra -pedantic -fsanitize=address") endif() message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") message(STATUS "CMAKE_C_FLAGS: ${CMAKE_C_FLAGS}") -- 2.47.3