9978b5274c
Update the coverage sanitizer flags in make to use the new flavor of coverage sanitization. Bug: 63108942 Test: Test fuzzer runs with coverage guards. Change-Id: I12bda1767b69d0d89557e5f8a91da50b0f137ff3
10 lines
360 B
Makefile
10 lines
360 B
Makefile
################################################
|
|
## A thin wrapper around BUILD_HOST_EXECUTABLE
|
|
## Common flags for host fuzz tests are added.
|
|
################################################
|
|
$(call record-module-type,HOST_FUZZ_TEST)
|
|
|
|
LOCAL_CFLAGS += -fsanitize-coverage=trace-pc-guard
|
|
LOCAL_STATIC_LIBRARIES += libLLVMFuzzer
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|