From bba733fd9317217cb3311a70aed8040e86e5fbe1 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Wed, 24 Jan 2024 13:37:01 -0800 Subject: [PATCH] Remove strip command This doesn't interact well with debug symbols and disassembly, and the all the global symbols are correct. --- CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bf1c87d..50eebf0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,7 +36,6 @@ target_include_directories(conflict_set PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/inclu target_compile_options(conflict_set PRIVATE -fPIC -fno-exceptions -fvisibility=hidden) if (CMAKE_BUILD_TYPE STREQUAL Release) target_link_options(conflict_set PRIVATE -nodefaultlibs -lc -fvisibility=hidden) - add_custom_command(TARGET conflict_set POST_BUILD COMMAND ${CMAKE_STRIP} -x $) endif() if (NOT APPLE)