summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-07-28 12:56:20 +0200
committerCarl Hetherington <cth@carlh.net>2020-07-28 12:56:20 +0200
commitfba78f24a825995123c7fe06ba4cd92e7afe78ef (patch)
tree6319eec47a44cd6ec882ec8e5271a81b313546fd
parent6445498b2128a05692acd00f11bfd1ad85769a51 (diff)
Give up trying to be selective with -Wno-maybe-uninitialized
-rw-r--r--wscript7
1 files changed, 2 insertions, 5 deletions
diff --git a/wscript b/wscript
index fdf743cdd..fbf115e1c 100644
--- a/wscript
+++ b/wscript
@@ -109,6 +109,8 @@ def configure(conf):
'-Wwrite-strings',
# I tried and failed to ignore these with _Pragma
'-Wno-ignored-qualifiers',
+ # Most gccs still give these warnings from boost::optional
+ '-Wno-maybe-uninitialized',
'-D_FILE_OFFSET_BITS=64'])
if conf.options.force_cpp11:
@@ -122,11 +124,6 @@ def configure(conf):
if int(gcc[0]) >= 8:
# I tried and failed to ignore these with _Pragma
conf.env.append_value('CXXFLAGS', ['-Wno-cast-function-type'])
- elif int(gcc[0]) >= 5 and int(gcc[0]) <= 8:
- # There appears to be a GCC bug which lingered from major versions 5--8 and which
- # flags up these warnings all over the place in boost::optional.
- # This seems to be the only practical way to hide it.
- conf.env.append_value('CXXFLAGS', ['-Wno-maybe-uninitialized'])
have_c11 = int(gcc[0]) >= 4 and int(gcc[1]) >= 8 and int(gcc[2]) >= 1
else:
have_c11 = False