Skip to content

Commit 0df9b0a

Browse files
author
MarcoFalke
committed
Merge #14042: travis: add CXXFLAGS=-Wno-psabi at ARM job
4c530e0 travis: add CXXFLAGS=-Wnopsabi at ARM job (Chun Kuan Lee) Pull request description: Disable annoying ABI warnings Tree-SHA512: 2f98c67c2a1a67f7e05c81ce82783b44083876709209f569d0b1162355b9bb0bd354769c36289bea7f707b002b42d71274f7d9f3c18401b67b404eb7b76c6eea
2 parents fea4e9e + 4c530e0 commit 0df9b0a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ jobs:
6262
RUN_UNIT_TESTS=false
6363
RUN_FUNCTIONAL_TESTS=false
6464
GOAL="install"
65-
BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
65+
# -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
66+
# This could be removed once the ABI change warning does not show up by default
67+
BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports CXXFLAGS=-Wno-psabi"
6668
# Win32
6769
- stage: test
6870
env: >-

0 commit comments

Comments
 (0)