summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-09-12 21:08:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-09-12 22:27:02 +0200
commit78a2c0752c599d5dc951b8cf6fbe741bda0eeedd (patch)
tree42f68d409f205ab4f3e48afe9c0556881a3456cb /bin
parentofz: avoid std::basic_string from boost::filesystem (diff)
downloadcore-78a2c0752c599d5dc951b8cf6fbe741bda0eeedd.tar.gz
core-78a2c0752c599d5dc951b8cf6fbe741bda0eeedd.zip
ofz: better workaround for broken msan build
workaround https://github.com/google/oss-fuzz/issues/6427 by forcing use of the libc++.a in /usr/msan/lib when compiling the msan version Change-Id: I4e992cd7710b5929e74034db7a49c590349149fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122014 Tested-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/oss-fuzz-build.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh
index 906cadd500d4..2bed84d865e4 100755
--- a/bin/oss-fuzz-build.sh
+++ b/bin/oss-fuzz-build.sh
@@ -12,6 +12,9 @@ echo start at `date -u`
#shuffle CXXFLAGS -stdlib=libc++ arg into CXX as well because we use
#the CXX as the linker and need to pass -stdlib=libc++ to build
export CXX="$CXX -stdlib=libc++ -fsanitize-blacklist=$SRC/libreoffice/bin/sanitize-excludelist.txt"
+if [[ $SANITIZER_FLAGS = *sanitize=memory* ]]; then
+ export CXX="$CXX -Wno-unused-command-line-argument -L/usr/msan/lib"
+fi
export CC="$CC -fsanitize-blacklist=$SRC/libreoffice/bin/sanitize-excludelist.txt"
#similarly force the -fsanitize etc args in as well as pthread to get
#things to link successfully during the build