[Libreoffice-commits] core.git: bin/oss-fuzz-build.sh
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 7 20:35:28 UTC 2021
bin/oss-fuzz-build.sh | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit b793a22aba36f77085ca699966bf9472a7342173
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Aug 7 21:33:48 2021 +0100
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Aug 7 22:34:54 2021 +0200
log when fuzzing build starts and ends
Change-Id: Id5db6c6dc799c03013576e0d041ab180ea4ac77f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120168
Tested-by: Caolán McNamara <caolanm at redhat.com>
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh
index f5fa83cab88b..e4b4b7eed625 100755
--- a/bin/oss-fuzz-build.sh
+++ b/bin/oss-fuzz-build.sh
@@ -5,6 +5,8 @@ if [ -z "${OUT}" ] || [ -z "${SRC}" ] || [ -z "${WORK}" ]; then
exit 1
fi
+echo start at `date`
+
#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"
@@ -55,3 +57,5 @@ done
cp $SRC/*.dict $OUT
#options files
cp $SRC/libreoffice/vcl/workben/*.options $OUT
+
+echo end at `date`
More information about the Libreoffice-commits
mailing list