mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
docs: Add undefined to --with-sanitizers=fuzzer,address
This commit is contained in:
parent
d5dbb4898c
commit
595cc9bcaf
1 changed files with 2 additions and 2 deletions
|
@ -77,13 +77,13 @@ will print an error and suggestion if so.
|
||||||
|
|
||||||
## libFuzzer
|
## 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).
|
found in the `compiler-rt` runtime libraries package).
|
||||||
|
|
||||||
To build all fuzz targets with libFuzzer, run
|
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
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue