mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
9 lines
208 B
Text
9 lines
208 B
Text
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
kmsan-cflags := -fsanitize=kernel-memory
|
||
|
|
||
|
ifdef CONFIG_KMSAN_CHECK_PARAM_RETVAL
|
||
|
kmsan-cflags += -fsanitize-memory-param-retval
|
||
|
endif
|
||
|
|
||
|
export CFLAGS_KMSAN := $(kmsan-cflags)
|