You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
248 B
12 lines
248 B
7 months ago
|
# See http://llvm.org/docs/LibFuzzer.html
|
||
|
if( LLVM_USE_SANITIZE_COVERAGE )
|
||
|
add_executable(cxa_demangle_fuzzer
|
||
|
cxa_demangle_fuzzer.cpp
|
||
|
../src/cxa_demangle.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(cxa_demangle_fuzzer
|
||
|
LLVMFuzzer
|
||
|
)
|
||
|
endif()
|