summaryrefslogtreecommitdiff
path: root/CompileFlags.cmake
diff options
context:
space:
mode:
authormakise-homura <akemi_homura@kurisa.ch>2022-07-06 19:54:30 +0300
committermakise-homura <akemi_homura@kurisa.ch>2022-07-06 22:43:49 +0300
commit28b1c5f9b3cde00c88b7729b96613ff0e51132d9 (patch)
tree06060d8d523b576e9358ea55b0f1b6f732db2ad5 /CompileFlags.cmake
parentad2e7f3c537dc88ea8140bab67c43d25695637f1 (diff)
downloadcmake-28b1c5f9b3cde00c88b7729b96613ff0e51132d9.tar.gz
LCC: get rid of excess -Wunused-but-set-variable on release builds
LCC, as of 1.26, has a buggy EDG frontend that emits -Wunused-but-set-variable warning even if there's something like "(void)var" when frontend optimizations are enabled (>=-O1). To get rid of this warning, we disable it in CMake's root CMakeLists.txt for LCC >= 1.26. Later, when this bug will be fixed in LCC, this version check will have its top version limit.
Diffstat (limited to 'CompileFlags.cmake')
-rw-r--r--CompileFlags.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/CompileFlags.cmake b/CompileFlags.cmake
index e6fb20b500..5641de4119 100644
--- a/CompileFlags.cmake
+++ b/CompileFlags.cmake
@@ -136,3 +136,12 @@ OFF to disable /MP completely." )
endif()
endif()
endif()
+
+# Get rid of excess -Wunused-but-set-variable on release builds with LCC >= 1.26
+foreach(l C CXX)
+ if(CMAKE_${l}_COMPILER_ID STREQUAL "LCC" AND NOT CMAKE_${l}_COMPILER_VERSION VERSION_LESS 1.26)
+ foreach(c MINSIZEREL RELEASE RELWITHDEBINFO)
+ string(APPEND "CMAKE_${l}_FLAGS_${c}" " -Wno-unused-but-set-variable")
+ endforeach()
+ endif()
+endforeach()