mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
4e07dba7cb
Replaced libgcc functions with asm optimized implementation. Signed-off-by: Michal Simek <monstr@monstr.eu>
24 lines
318 B
Makefile
24 lines
318 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
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 += udivsi3.o
|
|
lib-y += umodsi3.o
|