diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-07 21:33:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-07 22:34:54 +0200 |
commit | b793a22aba36f77085ca699966bf9472a7342173 (patch) | |
tree | 1a5e90d745cd3eb3597ea0811930d60ee2d14d3f /bin | |
parent | 60afbaf1616ed56247340837449ab580e54310a6 (diff) |
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@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oss-fuzz-build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
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` |