conf: Fix KCSAN enablement checking

Fixes:	6e3875ebcf ("sys: move SAN and COVERAGE options handling to kern.mk")
This commit is contained in:
Mark Johnston 2024-11-16 17:22:47 +00:00
parent b882d21558
commit 6817f3375b

View File

@ -93,6 +93,7 @@ ASM_CFLAGS= -x assembler-with-cpp -DLOCORE ${CFLAGS} ${ASM_CFLAGS.${.IMPSRC:T}}
COMPAT_FREEBSD32_ENABLED!= grep COMPAT_FREEBSD32 opt_global.h || true ; echo
KASAN_ENABLED!= grep KASAN opt_global.h || true ; echo
KCSAN_ENABLED!= grep KCSAN opt_global.h || true ; echo
KMSAN_ENABLED!= grep KMSAN opt_global.h || true ; echo
KUBSAN_ENABLED!= grep KUBSAN opt_global.h || true ; echo
COVERAGE_ENABLED!= grep COVERAGE opt_global.h || true ; echo