diff options
Diffstat (limited to 'arch/x86/coco/sev/Makefile')
-rw-r--r-- | arch/x86/coco/sev/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/coco/sev/Makefile b/arch/x86/coco/sev/Makefile new file mode 100644 index 000000000000..db3255b979bd --- /dev/null +++ b/arch/x86/coco/sev/Makefile @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0 + +obj-y += core.o sev-nmi.o vc-handle.o + +# Clang 14 and older may fail to respect __no_sanitize_undefined when inlining +UBSAN_SANITIZE_sev-nmi.o := n + +# GCC may fail to respect __no_sanitize_address when inlining +KASAN_SANITIZE_sev-nmi.o := n |