aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_win64.sh
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2024-03-20 09:46:12 +0000
committerfanquake <fanquake@gmail.com>2024-05-03 15:31:54 +0800
commitbec6a88fbcff0bd974e820cefd2be2d00b6f6c56 (patch)
tree0e7dfb9d9ba6cb61f7135f40793e6e899e0f304f /ci/test/00_setup_env_win64.sh
parent7469ac7032e26fe805c5d15ecded2d44253bc9c1 (diff)
ci: remove -Warray-bounds from -Werror for win64
These warnings are coming from leveldb, and appear to be fixed starting with GCC 13.
Diffstat (limited to 'ci/test/00_setup_env_win64.sh')
-rwxr-xr-xci/test/00_setup_env_win64.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_win64.sh b/ci/test/00_setup_env_win64.sh
index 7d2a17bd75..bf80d5d435 100755
--- a/ci/test/00_setup_env_win64.sh
+++ b/ci/test/00_setup_env_win64.sh
@@ -16,4 +16,4 @@ export GOAL="deploy"
# Prior to 11.0.0, the mingw-w64 headers were missing noreturn attributes, causing warnings when
# cross-compiling for Windows. https://sourceforge.net/p/mingw-w64/bugs/306/
# https://github.com/mingw-w64/mingw-w64/commit/1690994f515910a31b9fb7c7bd3a52d4ba987abe
-export BITCOIN_CONFIG="--enable-reduce-exports --disable-gui-tests CXXFLAGS='-Wno-return-type -Wno-error=maybe-uninitialized'"
+export BITCOIN_CONFIG="--enable-reduce-exports --disable-gui-tests CXXFLAGS='-Wno-return-type -Wno-error=maybe-uninitialized -Wno-error=array-bounds'"