mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 04:45:23 +07:00
c8ae8a8208
Add missing __ucmpdi2 helper function. Error log: kernel/built-in.o: In function `print_graph_duration': : undefined reference to `__ucmpdi2' kernel/built-in.o: In function `print_graph_duration': : undefined reference to `__ucmpdi2' Based on MIPS code. Signed-off-by: Michal Simek <monstr@monstr.eu>
31 lines
463 B
Makefile
31 lines
463 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
ifdef CONFIG_FUNCTION_TRACER
|
|
CFLAGS_REMOVE_ashldi3.o = -pg
|
|
CFLAGS_REMOVE_ashrdi3.o = -pg
|
|
CFLAGS_REMOVE_lshrdi3.o = -pg
|
|
endif
|
|
|
|
lib-y := memset.o
|
|
|
|
ifeq ($(CONFIG_OPT_LIB_ASM),y)
|
|
lib-y += fastcopy.o
|
|
else
|
|
lib-y += memcpy.o memmove.o
|
|
endif
|
|
|
|
lib-y += uaccess_old.o
|
|
|
|
lib-y += ashldi3.o
|
|
lib-y += ashrdi3.o
|
|
lib-y += divsi3.o
|
|
lib-y += lshrdi3.o
|
|
lib-y += modsi3.o
|
|
lib-y += muldi3.o
|
|
lib-y += mulsi3.o
|
|
lib-y += ucmpdi2.o
|
|
lib-y += udivsi3.o
|
|
lib-y += umodsi3.o
|