Remove LTO, minor UI tweaks (#1216)

This commit is contained in:
Kyle Reed
2023-06-29 22:33:33 -07:00
committed by GitHub
parent 3d46c28911
commit 3b41d73ddd
4 changed files with 5 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ if(cpp20_supported)
else()
set(USE_CPPOPT "-std=c++17")
endif()
set(USE_CPPOPT "${USE_CPPOPT} -flto -fno-rtti -fno-exceptions -Weffc++ -Wuninitialized -Wno-volatile")
set(USE_CPPOPT "${USE_CPPOPT} -fno-rtti -fno-exceptions -Weffc++ -Wuninitialized -Wno-volatile")
# Enable this if you want the linker to remove unused code and data
set(USE_LINK_GC yes)