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
This commit is contained in:
Junio C Hamano 2021-03-19 15:25:39 -07:00
commit af107029b1

View File

@ -3299,11 +3299,11 @@ cover_db_html: cover_db
# are not necessarily appropriate for general builds, and that vary greatly # are not necessarily appropriate for general builds, and that vary greatly
# depending on the compiler version used. # 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++ \ # make CC=clang CXX=clang++ \
# CFLAGS="-fsanitize-coverage=trace-pc-guard -fsanitize=address" \ # CFLAGS="-fsanitize=fuzzer-no-link,address" \
# LIB_FUZZING_ENGINE=/usr/lib/llvm-4.0/lib/libFuzzer.a \ # LIB_FUZZING_ENGINE="-fsanitize=fuzzer" \
# fuzz-all # fuzz-all
# #
FUZZ_CXXFLAGS ?= $(CFLAGS) FUZZ_CXXFLAGS ?= $(CFLAGS)