diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-03-19 15:25:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-03-19 15:25:39 -0700 |
commit | af107029b1b10f56b7e8b35ea605eab54f4efbe2 (patch) | |
tree | 5113884ee8dca1e0b820d3d379841b1de0faa8b6 | |
parent | Merge branch 'jk/slimmed-down' (diff) | |
parent | Makefile: update 'make fuzz-all' docs to reflect modern clang (diff) | |
download | tgif-af107029b1b10f56b7e8b35ea605eab54f4efbe2.tar.xz |
Merge branch 'ah/make-fuzz-all-doc-update'
Update insn in Makefile comments to run fuzz-all target.
* ah/make-fuzz-all-doc-update:
Makefile: update 'make fuzz-all' docs to reflect modern clang
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3299,11 +3299,11 @@ cover_db_html: cover_db # are not necessarily appropriate for general builds, and that vary greatly # depending on the compiler version used. # -# An example command to build against libFuzzer from LLVM 4.0.0: +# An example command to build against libFuzzer from LLVM 11.0.0: # # make CC=clang CXX=clang++ \ -# CFLAGS="-fsanitize-coverage=trace-pc-guard -fsanitize=address" \ -# LIB_FUZZING_ENGINE=/usr/lib/llvm-4.0/lib/libFuzzer.a \ +# CFLAGS="-fsanitize=fuzzer-no-link,address" \ +# LIB_FUZZING_ENGINE="-fsanitize=fuzzer" \ # fuzz-all # FUZZ_CXXFLAGS ?= $(CFLAGS) |