[Scummvm-git-logs] scummvm master -> 9145343729dc576e65978d6cd08900355db18658
dwatteau
noreply at scummvm.org
Mon Apr 14 07:57:52 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
9145343729 CONFIGURE: Use -Wno-maybe-uninitialized for GCC 4.9 too
Commit: 9145343729dc576e65978d6cd08900355db18658
https://github.com/scummvm/scummvm/commit/9145343729dc576e65978d6cd08900355db18658
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-04-14T09:55:54+02:00
Commit Message:
CONFIGURE: Use -Wno-maybe-uninitialized for GCC 4.9 too
I see many false positives with GCC 4.9.4.
Changed paths:
configure
diff --git a/configure b/configure
index c0b766b566c..7cc3adc5482 100755
--- a/configure
+++ b/configure
@@ -2390,7 +2390,8 @@ if test "$have_gcc" = yes; then
append_var CXXFLAGS "-Wno-array-bounds"
fi
- if test $_cxx_minor -le 8; then
+ # Many false positives with Common::Serializer
+ if test $_cxx_minor -le 9; then
append_var CXXFLAGS "-Wno-maybe-uninitialized"
fi
fi
More information about the Scummvm-git-logs
mailing list