Skip to content

Commit c087ae4

Browse files
committed
a
1 parent 4c4beac commit c087ae4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,13 @@ Listed sanitizers can be enabled with appropriate [CMake options](#cmake-standar
102102
To enable fuzz testing, the `UMF_BUILD_FUZZTESTS` CMake configuration flag must
103103
be set to `ON`. Note, that this feature is supported only on Linux and requires
104104
Clang. Additionally, ensure that the `CMAKE_PREFIX_PATH` includes the directory
105-
containing the Clang libraries necessary for fuzzing.
105+
containing the libraries necessary for fuzzing (e.g., Clang's
106+
libclang_rt.fuzzer_no_main-x86_64.a).
106107

107108
Example:
108109

109110
```bash
110-
cmake -B build -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Debug -DUMF_BUILD_FUZZTESTS=ON -DCMAKE_PREFIX_PATH=/path/to/clang/libs
111+
cmake -B build -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Debug -DUMF_BUILD_FUZZTESTS=ON -DCMAKE_PREFIX_PATH=/path/to/fuzzer/libs
111112
```
112113

113114
### CMake standard options

0 commit comments

Comments
 (0)