summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2023-08-17 10:03:34 -0400
committerGravatar GitHub2023-08-17 16:03:34 +0200
commit0e3a995bf405203c04039a240c8dc6c17981cea7 (patch)
tree447e68ca5b00a26dcacca689131cfddfd1d411db /src
parentMerge pull request #11287 from liamwhite/replaced-bytes (diff)
downloadyuzu-0e3a995bf405203c04039a240c8dc6c17981cea7.tar.gz
yuzu-0e3a995bf405203c04039a240c8dc6c17981cea7.tar.xz
yuzu-0e3a995bf405203c04039a240c8dc6c17981cea7.zip
cmake: mark warning disable for gcc 11 (#11301)
Diffstat (limited to '')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 2da983cad..7bb88c8ea 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -134,7 +134,7 @@ else()
134 endif() 134 endif()
135 135
136 # GCC bugs 136 # GCC bugs
137 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "12" AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU") 137 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "11" AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
138 # These diagnostics would be great if they worked, but are just completely broken 138 # These diagnostics would be great if they worked, but are just completely broken
139 # and produce bogus errors on external libraries like fmt. 139 # and produce bogus errors on external libraries like fmt.
140 add_compile_options( 140 add_compile_options(