From 8b80ef32905dd6cf8a2dd558ada7d2dff10d2db1 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 28 Oct 2024 14:07:37 +0800 Subject: [PATCH] build: Remove GCC ARM warning workaround (originally added in 193d1942) The workaround was initially added to silence warnings on GCC < 6.4 for ARM platforms due to a compiler bug (gcc.gnu.org/bugzilla/show_bug.cgi?id=77728). Since our codebase now requires modern GCC versions for coroutine support, and the bug was fixed in GCC 6.4+, this workaround is no longer needed. Refs 193d1942f22f399742b3fb15193b48e0ca3af2a5 Signed-off-by: Kefu Chai Closes scylladb/scylladb#21308 --- configure.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/configure.py b/configure.py index 0424bcf1d7..70df3ff33a 100755 --- a/configure.py +++ b/configure.py @@ -1538,8 +1538,6 @@ def get_warning_options(cxx): '-Wno-unsupported-friend', '-Wno-missing-field-initializers', '-Wno-deprecated-copy', - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77728 - '-Wno-psabi', '-Wno-enum-constexpr-conversion', ]