build: disable conversion warnings for GCC

GCC seems chronically incapable of producing correct and relevant
conversion warnings, and will therefore need to be silenced.
This commit is contained in:
dundargoc 2024-02-19 20:01:24 +01:00 committed by dundargoc
parent cc15ba212c
commit 8fdc84d0aa

View File

@ -121,11 +121,9 @@ elseif(MINGW)
# Enable wmain
target_link_libraries(nvim_bin PRIVATE -municode)
elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU")
if(CMAKE_C_COMPILER_VERSION VERSION_LESS 10)
target_compile_options(main_lib INTERFACE -Wno-conversion)
endif()
target_compile_options(main_lib INTERFACE -fno-common
target_compile_options(main_lib INTERFACE
-Wno-conversion
-fno-common
$<$<CONFIG:Release>:-Wno-unused-result>
$<$<CONFIG:RelWithDebInfo>:-Wno-unused-result>
$<$<CONFIG:MinSizeRel>:-Wno-unused-result>)