summaryrefslogtreecommitdiff
path: root/build-aux/appveyor-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/appveyor-build.sh')
-rwxr-xr-xbuild-aux/appveyor-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/appveyor-build.sh b/build-aux/appveyor-build.sh
index 6472d91..db42400 100755
--- a/build-aux/appveyor-build.sh
+++ b/build-aux/appveyor-build.sh
@@ -8,9 +8,9 @@ set -e
./bootstrap
CONFIGURE_ARGS=(--enable-relocatable --with-zemberek=check)
if [[ "$ASAN" == "yes" ]]; then
- CONFIGURE_ARGS+=(CFLAGS="-g3 -fsanitize=address -fsanitize=undefined" LDFLAGS="-fsanitize=address -fsanitize=undefined")
+ CONFIGURE_ARGS+=(CFLAGS="-g3 -fsanitize=address -fsanitize=undefined" CXXFLAGS="-g3 -fsanitize=address -fsanitize=undefined" LDFLAGS="-fsanitize=address -fsanitize=undefined")
fi
-./configure --enable-silent-rules "${CONFIGURE_ARGS[@]}"
+./configure "${CONFIGURE_ARGS[@]}"
make
make distcheck