2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2018-09-05 14:25:06 +08:00
|
|
|
obj-y += cacheflush.o
|
|
|
|
obj-$(CONFIG_CPU_HAS_FPU) += fpu.o
|
|
|
|
obj-y += memcmp.o
|
2022-03-30 20:07:14 +08:00
|
|
|
ifeq ($(CONFIG_HAVE_EFFICIENT_UNALIGNED_STRING_OPS), y)
|
2018-09-05 14:25:06 +08:00
|
|
|
obj-y += memcpy.o
|
|
|
|
obj-y += memmove.o
|
|
|
|
obj-y += memset.o
|
2022-03-30 20:07:14 +08:00
|
|
|
endif
|
2018-09-05 14:25:06 +08:00
|
|
|
obj-y += strcmp.o
|
|
|
|
obj-y += strcpy.o
|
|
|
|
obj-y += strlen.o
|
|
|
|
obj-y += strksyms.o
|
2018-12-09 14:29:59 +08:00
|
|
|
obj-$(CONFIG_FUNCTION_TRACER) += mcount.o
|