From ee1128ead846698db5e5633f193883837f2fbc64 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 5 Nov 2024 10:42:59 +0000 Subject: [PATCH] doc: update stack-clash-protection comment re mingw-w64 We no-longer support GCC 10. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6b65c2e02..d33a91f231 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -479,8 +479,7 @@ if(ENABLE_HARDENING) try_append_cxx_flags("-fcf-protection=full" TARGET hardening_interface) if(MINGW) - # stack-clash-protection doesn't compile with GCC 10 and earlier. - # In any case, it is a no-op for Windows. + # stack-clash-protection is a no-op for Windows. # See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90458 for more details. else() try_append_cxx_flags("-fstack-clash-protection" TARGET hardening_interface)