File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -102,12 +102,13 @@ Listed sanitizers can be enabled with appropriate [CMake options](#cmake-standar
102102To enable fuzz testing, the ` UMF_BUILD_FUZZTESTS ` CMake configuration flag must
103103be set to ` ON ` . Note, that this feature is supported only on Linux and requires
104104Clang. 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
107108Example:
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
You can’t perform that action at this time.
0 commit comments