mmc: sh_mobile_sdhi: enable SDIO IRQs for RCar Gen3
[linux-2.6-block.git] / scripts / Makefile.kasan
CommitLineData
0b24becc
AR
1ifdef CONFIG_KASAN
2ifdef CONFIG_KASAN_INLINE
3 call_threshold := 10000
4else
5 call_threshold := 0
6endif
7
39d114dd
AR
8KASAN_SHADOW_OFFSET ?= $(CONFIG_KASAN_SHADOW_OFFSET)
9
0b24becc
AR
10CFLAGS_KASAN_MINIMAL := -fsanitize=kernel-address
11
12CFLAGS_KASAN := $(call cc-option, -fsanitize=kernel-address \
39d114dd 13 -fasan-shadow-offset=$(KASAN_SHADOW_OFFSET) \
bebf56a1 14 --param asan-stack=1 --param asan-globals=1 \
0b24becc
AR
15 --param asan-instrumentation-with-call-threshold=$(call_threshold))
16
17ifeq ($(call cc-option, $(CFLAGS_KASAN_MINIMAL) -Werror),)
6e54abac 18 ifneq ($(CONFIG_COMPILE_TEST),y)
0b24becc
AR
19 $(warning Cannot use CONFIG_KASAN: \
20 -fsanitize=kernel-address is not supported by compiler)
6e54abac 21 endif
0b24becc
AR
22else
23 ifeq ($(CFLAGS_KASAN),)
6e54abac
AR
24 ifneq ($(CONFIG_COMPILE_TEST),y)
25 $(warning CONFIG_KASAN: compiler does not support all options.\
26 Trying minimal configuration)
27 endif
0b24becc
AR
28 CFLAGS_KASAN := $(CFLAGS_KASAN_MINIMAL)
29 endif
30endif
31endif