Makefile 945 字节
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2 3 4 5
#
# Makefile for Kernel-based Virtual Machine module, HYP part
#

6
ccflags-y += -fno-stack-protector -DDISABLE_BRANCH_PROFILING
7

8 9 10
KVM=../../../../virt/kvm

obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/vgic-v2-sr.o
11
obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/vgic-v3-sr.o
12 13
obj-$(CONFIG_KVM_ARM_HOST) += $(KVM)/arm/hyp/timer-sr.o

14
obj-$(CONFIG_KVM_ARM_HOST) += sysreg-sr.o
15
obj-$(CONFIG_KVM_ARM_HOST) += debug-sr.o
M
Marc Zyngier 已提交
16
obj-$(CONFIG_KVM_ARM_HOST) += entry.o
17
obj-$(CONFIG_KVM_ARM_HOST) += switch.o
18
obj-$(CONFIG_KVM_ARM_HOST) += fpsimd.o
M
Marc Zyngier 已提交
19
obj-$(CONFIG_KVM_ARM_HOST) += tlb.o
M
Marc Zyngier 已提交
20
obj-$(CONFIG_KVM_ARM_HOST) += hyp-entry.o
21
obj-$(CONFIG_KVM_ARM_HOST) += s2-setup.o
22

23 24 25
# 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.
26 27 28
GCOV_PROFILE	:= n
KASAN_SANITIZE	:= n
UBSAN_SANITIZE	:= n
29
KCOV_INSTRUMENT	:= n