mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
a0938a8e2f
The arch/m68k/lib versions of the libgcc functions: ashldi3, ashrdi3 and lshrdi3 were taken directly from an older version of gcc. We can use the kernel's own generic lib versions of these - they are virtually identical. Switch to those and remove the m68k local ones. Signed-off-by: Greg Ungerer <gerg@linux-m68k.org> Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org> Link: https://lore.kernel.org/r/20230913071350.1939818-1-gerg@kernel.org Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
17 lines
340 B
Makefile
17 lines
340 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
#
|
|
# Makefile for m68k-specific library files..
|
|
#
|
|
|
|
lib-y := muldi3.o memcpy.o memset.o memmove.o
|
|
|
|
lib-$(CONFIG_MMU) += uaccess.o
|
|
lib-$(CONFIG_CPU_HAS_NO_MULDIV64) += mulsi3.o divsi3.o udivsi3.o
|
|
lib-$(CONFIG_CPU_HAS_NO_MULDIV64) += modsi3.o umodsi3.o
|
|
|
|
ifndef CONFIG_GENERIC_CSUM
|
|
lib-y += checksum.o
|
|
endif
|
|
|