From f2d3715727acc3215f001405d54427fba163c6a0 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Sat, 14 Apr 2018 11:39:32 -0600 Subject: [PATCH] zcutil/build.sh: Remove --enable-werror from default configuration Windows cross-compile has currently-unavoidable warnings. Upstream Bitcoin Core has them as well. For now, let's remove this from the default configuration, and add it to the Linux and OSX CI builders (so we effectively still enforce it for merged PRs). --- zcutil/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcutil/build.sh b/zcutil/build.sh index f3868c893..c3bea9ea9 100755 --- a/zcutil/build.sh +++ b/zcutil/build.sh @@ -103,5 +103,5 @@ ld -v HOST="$HOST" BUILD="$BUILD" NO_PROTON="$PROTON_ARG" "$MAKE" "$@" -C ./depends/ V=1 ./autogen.sh -CONFIG_SITE="$PWD/depends/$HOST/share/config.site" ./configure "$HARDENING_ARG" "$LCOV_ARG" "$TEST_ARG" "$MINING_ARG" "$PROTON_ARG" $CONFIGURE_FLAGS --enable-werror CXXFLAGS='-g' +CONFIG_SITE="$PWD/depends/$HOST/share/config.site" ./configure "$HARDENING_ARG" "$LCOV_ARG" "$TEST_ARG" "$MINING_ARG" "$PROTON_ARG" $CONFIGURE_FLAGS CXXFLAGS='-g' "$MAKE" "$@" V=1