aboutsummaryrefslogtreecommitdiff
path: root/doc/fuzzing.md
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2019-10-30 13:34:10 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2019-10-30 13:34:10 +0000
commit595cc9bcafb16709c0dd4a36d5921feb009ce430 (patch)
treed2a2d3a734c36cd7cde9be127f066a6331867f8c /doc/fuzzing.md
parentd5dbb4898c437d3d2a5798d79c3986ba9e0b72f9 (diff)
downloadbitcoin-595cc9bcafb16709c0dd4a36d5921feb009ce430.tar.xz
docs: Add undefined to --with-sanitizers=fuzzer,address
Diffstat (limited to 'doc/fuzzing.md')
-rw-r--r--doc/fuzzing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/fuzzing.md b/doc/fuzzing.md
index 3dc6be8b86..50e9251b8d 100644
--- a/doc/fuzzing.md
+++ b/doc/fuzzing.md
@@ -77,13 +77,13 @@ will print an error and suggestion if so.
## libFuzzer
-A recent version of `clang`, the address sanitizer and libFuzzer is needed (all
+A recent version of `clang`, the address/undefined sanitizers (ASan/UBSan) and libFuzzer is needed (all
found in the `compiler-rt` runtime libraries package).
To build all fuzz targets with libFuzzer, run
```
-./configure --disable-ccache --enable-fuzz --with-sanitizers=fuzzer,address CC=clang CXX=clang++
+./configure --disable-ccache --enable-fuzz --with-sanitizers=fuzzer,address,undefined CC=clang CXX=clang++
make
```