2019-05-19 13:07:45 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2019-10-28 13:10:41 +01:00
|
|
|
lib-y += delay.o
|
|
|
|
lib-y += memcpy.o
|
|
|
|
lib-y += memset.o
|
2020-11-30 17:13:19 +08:00
|
|
|
lib-y += memmove.o
|
2024-07-31 20:36:59 -07:00
|
|
|
ifeq ($(CONFIG_KASAN_GENERIC)$(CONFIG_KASAN_SW_TAGS),)
|
2023-01-13 22:23:00 +01:00
|
|
|
lib-y += strcmp.o
|
|
|
|
lib-y += strlen.o
|
|
|
|
lib-y += strncmp.o
|
2024-07-31 20:36:59 -07:00
|
|
|
endif
|
2024-01-08 15:57:05 -08:00
|
|
|
lib-y += csum.o
|
2024-01-15 05:59:24 +00:00
|
|
|
ifeq ($(CONFIG_MMU), y)
|
|
|
|
lib-$(CONFIG_RISCV_ISA_V) += uaccess_vector.o
|
|
|
|
endif
|
2020-09-07 07:58:22 +02:00
|
|
|
lib-$(CONFIG_MMU) += uaccess.o
|
2019-10-28 13:10:41 +01:00
|
|
|
lib-$(CONFIG_64BIT) += tishift.o
|
2023-02-24 17:26:29 +01:00
|
|
|
lib-$(CONFIG_RISCV_ISA_ZICBOZ) += clear_page.o
|
2020-12-17 16:01:45 +00:00
|
|
|
obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
|
2024-01-15 05:59:22 +00:00
|
|
|
lib-$(CONFIG_RISCV_ISA_V) += xor.o
|
2024-01-15 05:59:24 +00:00
|
|
|
lib-$(CONFIG_RISCV_ISA_V) += riscv_v_helpers.o
|