wxGTK/gcc11_2.patch

119 lines
3.7 KiB
Diff

From b47189b945cfaff9870ca5b38c8083fec7c9bb40 Mon Sep 17 00:00:00 2001
From: Ian McInerney <ian.s.mcinerney@ieee.org>
Date: Thu, 22 Apr 2021 19:22:32 +0100
Subject: [PATCH 1/2] Don't enable warnings in the system headers during all
headers test
This warning flag is really only used for stdlib debugging/writing,
and is off by default so that normal users of the library don't see
any warnings generated by the library (since they have no control
over it).
---
tests/allheaders.cpp | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/allheaders.cpp b/tests/allheaders.cpp
index 575d38fbfb8..70f43e63d1a 100644
--- a/tests/allheaders.cpp
+++ b/tests/allheaders.cpp
@@ -119,6 +119,9 @@
// - Globally replace HANDLE_GCC_WARNING with GCC_TURN_ON.
// - Add v6 check for -Wabi, gcc < 6 don't seem to support turning it off
// once it's turned on and gives it for the standard library symbols.
+ // - Remove GCC_TURN_ON(system-headers) from the list because this option
+ // will enable the warnings to be thrown inside the system headers that
+ // should instead be ignored.
// {{{
#if CHECK_GCC_VERSION(6,1)
GCC_TURN_ON(abi)
@@ -307,7 +310,6 @@
GCC_TURN_ON(switch-default)
GCC_TURN_ON(switch-enum)
GCC_TURN_ON(synth)
- GCC_TURN_ON(system-headers)
#if CHECK_GCC_VERSION(6,1)
GCC_TURN_ON(templates)
#endif // 6.1
From e0005c1d93afde5e0fc6400984459ebdcfdbc519 Mon Sep 17 00:00:00 2001
From: Ian McInerney <ian.s.mcinerney@ieee.org>
Date: Thu, 22 Apr 2021 19:23:48 +0100
Subject: [PATCH 2/2] No longer include the system headers first
With the Wsystem-headers warning removed, these are no longer needed
and can instead be included on first-use again.
---
tests/allheaders.cpp | 49 --------------------------------------------
1 file changed, 49 deletions(-)
diff --git a/tests/allheaders.cpp b/tests/allheaders.cpp
index 70f43e63d1a..522885b636d 100644
--- a/tests/allheaders.cpp
+++ b/tests/allheaders.cpp
@@ -33,55 +33,9 @@
_Pragma(STRINGIZE(GCC diagnostic ignored STRINGIZE(CONCAT(-W,warn))))
#endif
-// Due to what looks like a bug in gcc, some warnings enabled after including
-// the standard headers still result in warnings being given when instantiating
-// some functions defined in these headers later and we need to explicitly
-// disable these warnings to avoid them, even if they're not enabled yet.
-#ifdef GCC_TURN_OFF
- #pragma GCC diagnostic push
-
- GCC_TURN_OFF(aggregate-return)
- GCC_TURN_OFF(conversion)
- GCC_TURN_OFF(format)
- GCC_TURN_OFF(padded)
- GCC_TURN_OFF(parentheses)
- GCC_TURN_OFF(sign-compare)
- GCC_TURN_OFF(sign-conversion)
- GCC_TURN_OFF(unused-parameter)
- GCC_TURN_OFF(zero-as-null-pointer-constant)
-#endif
-
// We have to include this one first in order to check for HAVE_XXX below.
#include "wx/setup.h"
-// Include all standard headers that are used in wx headers before enabling the
-// warnings below.
-#include <algorithm>
-#include <cmath>
-#include <exception>
-#include <functional>
-#include <iomanip>
-#include <iostream>
-#include <list>
-#include <locale>
-#include <map>
-#include <set>
-#include <sstream>
-#include <string>
-#include <vector>
-
-#if defined(HAVE_STD_UNORDERED_MAP)
- #include <unordered_map>
-#endif
-#if defined(HAVE_STD_UNORDERED_SET)
- #include <unordered_set>
-#endif
-
-#if defined(HAVE_DLOPEN)
- #include <dlfcn.h>
-#endif
-#include <fcntl.h>
-
#include "catch.hpp"
#if defined(__WXMSW__)
@@ -99,9 +53,6 @@
#include <QtGui/QFont>
#endif
-#ifdef GCC_TURN_OFF
- #pragma GCC diagnostic pop
-#endif
// Enable max warning level for headers if possible, using gcc pragmas.
#ifdef GCC_TURN_ON