mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
5ba2a0b8b0
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236909 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
345 B
CMake
15 lines
345 B
CMake
# These tests depend on both coverage and dfsan instrumentation.
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE
|
|
"${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all -fsanitize=dataflow")
|
|
|
|
foreach(Test ${DFSanTests})
|
|
add_executable(LLVMFuzzer-${Test}-DFSan
|
|
../${Test}.cpp
|
|
)
|
|
target_link_libraries(LLVMFuzzer-${Test}-DFSan
|
|
LLVMFuzzer
|
|
)
|
|
endforeach()
|
|
|