rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | KASAN_SANITIZE := n | ||||
3 | UBSAN_SANITIZE_kasan.o := n | ||||
4 | KCOV_INSTRUMENT := n | ||||
5 | |||||
6 | CFLAGS_REMOVE_kasan.o = -pg | ||||
7 | # Function splitter causes unnecessary splits in __asan_load1/__asan_store1 | ||||
8 | # see: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63533 | ||||
9 | CFLAGS_kasan.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector) | ||||
10 | |||||
11 | obj-y := kasan.o report.o kasan_init.o quarantine.o |