Makefile (97acb6a8fcc4e5c2cdc2693a35acdc5a7461aaa3) | Makefile (93324e6842148cfdb44d1437fb586b957ace1f8c) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Building vDSO images for x86. 4# 5 6# Absolute relocation type $(ARCH_REL_TYPE_ABS) needs to be defined before 7# the inclusion of generic Makefile. 8ARCH_REL_TYPE_ABS := R_X86_64_JUMP_SLOT|R_X86_64_GLOB_DAT|R_X86_64_RELATIVE| 9ARCH_REL_TYPE_ABS += R_386_GLOB_DAT|R_386_JMP_SLOT|R_386_RELATIVE 10include $(srctree)/lib/vdso/Makefile 11 12# Sanitizer runtimes are unavailable and cannot be linked here. 13KASAN_SANITIZE := n | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Building vDSO images for x86. 4# 5 6# Absolute relocation type $(ARCH_REL_TYPE_ABS) needs to be defined before 7# the inclusion of generic Makefile. 8ARCH_REL_TYPE_ABS := R_X86_64_JUMP_SLOT|R_X86_64_GLOB_DAT|R_X86_64_RELATIVE| 9ARCH_REL_TYPE_ABS += R_386_GLOB_DAT|R_386_JMP_SLOT|R_386_RELATIVE 10include $(srctree)/lib/vdso/Makefile 11 12# Sanitizer runtimes are unavailable and cannot be linked here. 13KASAN_SANITIZE := n |
14KMSAN_SANITIZE_vclock_gettime.o := n 15KMSAN_SANITIZE_vgetcpu.o := n 16 |
|
14UBSAN_SANITIZE := n 15KCSAN_SANITIZE := n 16OBJECT_FILES_NON_STANDARD := y 17 18# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in. 19KCOV_INSTRUMENT := n 20 21VDSO64-$(CONFIG_X86_64) := y --- 195 unchanged lines hidden --- | 17UBSAN_SANITIZE := n 18KCSAN_SANITIZE := n 19OBJECT_FILES_NON_STANDARD := y 20 21# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in. 22KCOV_INSTRUMENT := n 23 24VDSO64-$(CONFIG_X86_64) := y --- 195 unchanged lines hidden --- |