diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-29 20:33:14 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-29 22:22:17 -0400 |
commit | 3167423f079e08f530df30eccad2a467c8ad5014 (patch) | |
tree | 062eb9548cbb6daba4c5ddb20f0959c1f96ca9f8 /sim/configure | |
parent | 999b474b8aa49f522984b2f4c1d954a2229882b9 (diff) | |
download | fsf-binutils-gdb-3167423f079e08f530df30eccad2a467c8ad5014.zip fsf-binutils-gdb-3167423f079e08f530df30eccad2a467c8ad5014.tar.gz fsf-binutils-gdb-3167423f079e08f530df30eccad2a467c8ad5014.tar.bz2 |
sim: use -Wno-error=maybe-uninitialized
We have some code tripping this warning, but it depends on the gcc
version & optimization levels. We've added some hints to the code
so some versions of gcc work better, but still not all. Let's just
disable the warning like gdb does.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sim/configure b/sim/configure index 34cd1c9..3120006 100755 --- a/sim/configure +++ b/sim/configure @@ -14588,6 +14588,7 @@ build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ -Wpointer-sign \ -Wno-unused -Wunused-value -Wunused-function \ -Wno-switch -Wno-char-subscripts -Wmissing-prototypes +-Wno-error=maybe-uninitialized -Wdeclaration-after-statement -Wempty-body -Wmissing-parameter-type \ -Wold-style-declaration -Wold-style-definition" |