]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Update fuzz README.md
authorMatt Caswell <matt@openssl.org>
Wed, 28 Aug 2019 16:30:14 +0000 (17:30 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 29 Aug 2019 10:01:39 +0000 (11:01 +0100)
Building with enable-fuzz-afl has always required no-shared. We now also
need no-module for a successful build. Therefore update the README
accordingly.

Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9721)

fuzz/README.md

index 44c73f857e6288e84638bc0ec4299645e3a6b6f3..8e7c48d45e45f70ec4724ea7da7e6f86702a0f5c 100644 (file)
@@ -60,9 +60,9 @@ AFL
 Configure for fuzzing:
 
     $ sudo apt-get install afl-clang
-    $ CC=afl-clang-fast ./config enable-fuzz-afl no-shared -DPEDANTIC \
-        enable-tls1_3 enable-weak-ssl-ciphers enable-rc5 enable-md2 \
-        enable-ssl3 enable-ssl3-method enable-nextprotoneg \
+    $ CC=afl-clang-fast ./config enable-fuzz-afl no-shared no-module \
+        -DPEDANTIC enable-tls1_3 enable-weak-ssl-ciphers enable-rc5 \
+        enable-md2 enable-ssl3 enable-ssl3-method enable-nextprotoneg \
         enable-ec_nistp_64_gcc_128 -fno-sanitize=alignment \
         --debug
     $ make