# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Makefile for Kernel-based Virtual Machine module, HYP/nVHE part | |
# | |
asflags-y := -D__KVM_VHE_HYPERVISOR__ | |
ccflags-y := -D__KVM_VHE_HYPERVISOR__ | |
obj-y := debug-sr.o switch.o tlb.o ../hyp-entry.o | |
# KVM code is run at a different exception code with a different map, so | |
# compiler instrumentation that inserts callbacks or checks into the code may | |
# cause crashes. Just disable it. | |
GCOV_PROFILE := n | |
KASAN_SANITIZE := n | |
UBSAN_SANITIZE := n | |
KCOV_INSTRUMENT := n |