We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1df3c67 commit d30eeb6Copy full SHA for d30eeb6
ci/matrix.sh
@@ -36,7 +36,9 @@ if [ "$BUILD_TARGET" = "arm-linux" ]; then
36
export HOST=arm-linux-gnueabihf
37
export PACKAGES="g++-arm-linux-gnueabihf"
38
export CHECK_DOC=1
39
- export BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
+ # -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
40
+ # This could be removed once the ABI change warning does not show up by default
41
+ export BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports CXXFLAGS=-Wno-psabi"
42
elif [ "$BUILD_TARGET" = "win32" ]; then
43
export HOST=i686-w64-mingw32
44
export DPKG_ADD_ARCH="i386"
0 commit comments