We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5dbb48 commit 595cc9bCopy full SHA for 595cc9b
doc/fuzzing.md
@@ -77,13 +77,13 @@ will print an error and suggestion if so.
77
78
## libFuzzer
79
80
-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
81
found in the `compiler-rt` runtime libraries package).
82
83
To build all fuzz targets with libFuzzer, run
84
85
```
86
-./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++
87
make
88
89
0 commit comments