Skip to content

Commit 184bd60

Browse files
committed
ci: make fuzzing builds stricter by enabling -Werror by default
Unfortunately, we need -Wno-unused-command-line-argument as configure will fail to run with -Werror due to Dash's current build system utilizing -static-libstdc++ indiscriminately, resulting in Clang warnings of "unused arguments".
1 parent 5e2eacb commit 184bd60

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ci/test/00_setup_env_native_fuzz.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export LC_ALL=C.UTF-8
99
export PACKAGES="clang llvm python3 libevent-dev bsdmainutils libboost-filesystem-dev libboost-test-dev libboost-thread-dev"
1010
export DEP_OPTS="NO_UPNP=1 DEBUG=1"
1111
export CPPFLAGS="-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
12+
export CXXFLAGS="-Werror -Wno-unused-command-line-argument"
1213
export PYZMQ=true
1314
export RUN_UNIT_TESTS=false
1415
export RUN_INTEGRATION_TESTS=false

0 commit comments

Comments
 (0)