mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-26 21:54:11 +08: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
|