Makefile (3eb66e91a25497065c5322b1268cbc3953642227) | Makefile (67626fadd26977aca76d3540b80ce99233399cdf) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for s390-specific library files.. 4# 5 | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for s390-specific library files.. 4# 5 |
6lib-y += delay.o string.o uaccess.o find.o | 6lib-y += delay.o string.o uaccess.o find.o spinlock.o |
7obj-y += mem.o xor.o | 7obj-y += mem.o xor.o |
8lib-$(CONFIG_SMP) += spinlock.o | |
9lib-$(CONFIG_KPROBES) += probes.o 10lib-$(CONFIG_UPROBES) += probes.o 11 12# Instrumenting memory accesses to __user data (in different address space) 13# produce false positives 14KASAN_SANITIZE_uaccess.o := n 15 16chkbss := mem.o 17include $(srctree)/arch/s390/scripts/Makefile.chkbss | 8lib-$(CONFIG_KPROBES) += probes.o 9lib-$(CONFIG_UPROBES) += probes.o 10 11# Instrumenting memory accesses to __user data (in different address space) 12# produce false positives 13KASAN_SANITIZE_uaccess.o := n 14 15chkbss := mem.o 16include $(srctree)/arch/s390/scripts/Makefile.chkbss |