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 5971b36 commit 9547f74Copy full SHA for 9547f74
CMakeLists.txt
@@ -165,6 +165,11 @@ if(USE_MSAN)
165
"prevent reporting false-positives")
166
add_sanitizer_flag(memory)
167
endif()
168
+# Fuzzer instrumentation for the whole library
169
+if(UMF_BUILD_FUZZTESTS AND CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND LINUX)
170
+ add_compile_options("-fsanitize=fuzzer-no-link")
171
+ add_link_options("-fsanitize=fuzzer-no-link")
172
+endif()
173
174
# A header only library to specify include directories in transitive
175
# dependencies.
0 commit comments