aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2025-03-15 18:13:40 -0400
committerSimon Marchi <simon.marchi@efficios.com>2025-03-17 16:14:08 -0400
commitdf3eb64a53c3589f4e930a89e08e2200e8627509 (patch)
treeb3e8811c78dd5672f9d521ec3146e443b725d1c0 /gdb
parent71f193a5c1cb02dcde6ac160cdab88e9725862bb (diff)
downloadbinutils-df3eb64a53c3589f4e930a89e08e2200e8627509.zip
binutils-df3eb64a53c3589f4e930a89e08e2200e8627509.tar.gz
binutils-df3eb64a53c3589f4e930a89e08e2200e8627509.tar.bz2
gdbsupport: re-format and sort warning flags
Put them one per line and sort alphabetically. Change-Id: Idb6947d444dc6e556a75645b04f97a915bba7a59 Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb')
-rwxr-xr-xgdb/configure32
1 files changed, 20 insertions, 12 deletions
diff --git a/gdb/configure b/gdb/configure
index 92adb53..f4f0262 100755
--- a/gdb/configure
+++ b/gdb/configure
@@ -31274,22 +31274,30 @@ if test "${ERROR_ON_WARNING}" = yes ; then
fi
# The options we'll try to enable.
-build_warnings="-Wall -Wpointer-arith \
--Wno-unused -Wunused-value -Wunused-variable -Wunused-function \
--Wno-switch -Wno-char-subscripts \
--Wempty-body -Wunused-but-set-parameter -Wunused-but-set-variable \
--Wno-sign-compare -Wno-error=maybe-uninitialized \
--Wno-mismatched-tags \
--Wno-error=deprecated-register \
--Wsuggest-override \
--Wimplicit-fallthrough=5 \
--Wduplicated-cond \
--Wshadow=local \
+build_warnings=" \
+-Wall \
-Wdeprecated-copy \
-Wdeprecated-copy-dtor \
--Wredundant-move \
+-Wduplicated-cond \
+-Wempty-body \
+-Wimplicit-fallthrough=5 \
-Wmissing-declarations \
+-Wno-char-subscripts \
+-Wno-error=deprecated-register \
+-Wno-mismatched-tags \
+-Wno-sign-compare -Wno-error=maybe-uninitialized \
+-Wno-switch \
+-Wno-unused \
+-Wpointer-arith \
+-Wredundant-move \
+-Wshadow=local \
-Wstrict-null-sentinel \
+-Wsuggest-override \
+-Wunused-but-set-parameter \
+-Wunused-but-set-variable \
+-Wunused-function \
+-Wunused-value \
+-Wunused-variable \
-Wvla \
"