aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerge-script <fanquake@gmail.com>2024-05-22 09:20:45 +0100
committermerge-script <fanquake@gmail.com>2024-05-22 09:20:45 +0100
commitfa8cb0516d4198c56d3dc1252a5a899959e279aa (patch)
treea15b3042cfe93b5cdd240cdd0cc17dceb590f98f
parent0388dd702b8d76c83bd17fc339d8c63904234fb0 (diff)
parentfa73431dd4709754c34a4d5ad1c940ff9e628cf3 (diff)
downloadbitcoin-fa8cb0516d4198c56d3dc1252a5a899959e279aa.tar.xz
Merge bitcoin/bitcoin#30144: ci: Add mising -Wno-error=maybe-uninitialized to armhf task
fa73431dd4709754c34a4d5ad1c940ff9e628cf3 ci: Add mising -Wno-error=maybe-uninitialized to armhf task (MarcoFalke) Pull request description: This happens after bd597c33e3e58cd3c6b22ed42f8f1fd7ff886bb2 in many pull requests as a silent merge conflict. For example: * https://github.com/bitcoin/bitcoin/pull/29720#issuecomment-2120847661 * https://github.com/bitcoin/bitcoin/pull/29521#issuecomment-2106542236 * (Probably many undetected, because the CI task was not yet re-run) * ... ACKs for top commit: fjahr: utACK fa73431dd4709754c34a4d5ad1c940ff9e628cf3 fanquake: ACK fa73431dd4709754c34a4d5ad1c940ff9e628cf3 - many fixed with 13.x Tree-SHA512: 6e6ff8dc6f3c6a2abcd04c4203d3468f6e98c1ad3a4da4ad0037a9ee2cbec6bec079a5f778aba0273e38e173849927abcdfcfba7643d08ed66c1168cb89fab08
-rwxr-xr-xci/test/00_setup_env_arm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/00_setup_env_arm.sh b/ci/test/00_setup_env_arm.sh
index c80036164f..396e782959 100755
--- a/ci/test/00_setup_env_arm.sh
+++ b/ci/test/00_setup_env_arm.sh
@@ -17,4 +17,4 @@ export RUN_FUNCTIONAL_TESTS=false
export GOAL="install"
# -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
# This could be removed once the ABI change warning does not show up by default
-export BITCOIN_CONFIG="--enable-reduce-exports CXXFLAGS=-Wno-psabi"
+export BITCOIN_CONFIG="--enable-reduce-exports CXXFLAGS='-Wno-psabi -Wno-error=maybe-uninitialized'"