1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

fuzz: Fix aarch64 build on OSS-Fuzz

This commit is contained in:
Nick Wellnhofer 2024-05-28 22:26:18 +02:00
parent e349709ae7
commit b7f30bae7b

View File

@ -18,6 +18,12 @@ else
CONFIG='--with-zlib --with-lzma'
fi
# Workaround for a LeakSanitizer crashes,
# see https://github.com/google/oss-fuzz/issues/11798.
if [ "$ARCHITECTURE" = "aarch64" ]; then
export ASAN_OPTIONS=detect_leaks=0
fi
export V=1
./autogen.sh \