From: Nikita Popov Date: Fri, 12 Jun 2020 07:50:52 +0000 (+0200) Subject: Update fuzzer readme X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ccf3e0121671f85b9cc0d0a9e96b39c3fc4d5117;p=php Update fuzzer readme Drop --enable-json flag and make it more obvious that clang needs to be used. --- diff --git a/sapi/fuzzer/README.md b/sapi/fuzzer/README.md index c753c23c30..0645a04bc7 100644 --- a/sapi/fuzzer/README.md +++ b/sapi/fuzzer/README.md @@ -4,12 +4,13 @@ Fuzzing SAPI for PHP The following `./configure` options can be used to enable the fuzzing SAPI, as well as all availablefuzzers. If you don't build the exif/json/mbstring extensions, fuzzers for these extensions will not be built. ```sh +CC=clang CXX=clang++ \ ./configure \ + --disable-all \ --enable-fuzzer \ --with-pic \ --enable-debug-assertions \ --enable-exif \ - --enable-json \ --enable-mbstring ```