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

6 7 8 9 10 11
incdir := $(srctree)/$(src)/include
subdir-asflags-y := -I$(incdir)
subdir-ccflags-y := -I$(incdir)				\
		    -fno-stack-protector		\
		    -DDISABLE_BRANCH_PROFILING		\
		    $(DISABLE_STACKLEAK_PLUGIN)
12

13
obj-$(CONFIG_KVM) += hyp.o vhe/ nvhe/
14
obj-$(CONFIG_KVM_INDIRECT_VECTORS) += smccc_wa.o
F
Fuad Tabba 已提交
15 16

hyp-y := vgic-v3-sr.o timer-sr.o aarch32.o vgic-v2-cpuif-proxy.o sysreg-sr.o \
17
	 entry.o fpsimd.o
18

19 20 21
# 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.
22 23 24
GCOV_PROFILE	:= n
KASAN_SANITIZE	:= n
UBSAN_SANITIZE	:= n
25
KCOV_INSTRUMENT	:= n