summaryrefslogtreecommitdiff
path: root/sapi/fuzzer
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-06-12 09:50:52 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-06-12 10:08:34 +0200
commitccf3e0121671f85b9cc0d0a9e96b39c3fc4d5117 (patch)
treee4eba848434c495bfea9c4d8b1933428a41eceb3 /sapi/fuzzer
parenta5e9950c7a491bb945888401196c8d685aaba61b (diff)
downloadphp-git-ccf3e0121671f85b9cc0d0a9e96b39c3fc4d5117.tar.gz
Update fuzzer readme
Drop --enable-json flag and make it more obvious that clang needs to be used.
Diffstat (limited to 'sapi/fuzzer')
-rw-r--r--sapi/fuzzer/README.md3
1 files changed, 2 insertions, 1 deletions
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
```