mirror of
https://github.com/arjuncr/Linux-from-scratch.git
synced 2026-01-15 00:37:17 +00:00
8 lines
201 B
Makefile
8 lines
201 B
Makefile
ifdef CONFIG_KCOV
|
|
CFLAGS_KCOV := $(call cc-option,-fsanitize-coverage=trace-pc,)
|
|
ifeq ($(CONFIG_KCOV_ENABLE_COMPARISONS),y)
|
|
CFLAGS_KCOV += $(call cc-option,-fsanitize-coverage=trace-cmp,)
|
|
endif
|
|
|
|
endif
|