Remove strip command

This doesn't interact well with debug symbols and disassembly, and the
all the global symbols are correct.
This commit is contained in:
2024-01-24 13:37:01 -08:00
parent b5a06a8891
commit bba733fd93

View File

@@ -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 $<TARGET_FILE:conflict_set>)
endif()
if (NOT APPLE)