mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 09:31:26 +00:00
8939c58d68
xtensa gcc-13 has changed multiplication handling and may now use __umulsidi3 helper where it used to use __muldi3. As a result building the kernel with the new gcc may fail with the following error: linux/init/main.c:1287: undefined reference to `__umulsidi3' Fix the build by providing __umulsidi3 implementation for xtensa. Cc: stable@vger.kernel.org # 5.18+ Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
13 lines
381 B
Makefile
13 lines
381 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for Xtensa-specific library files.
|
|
#
|
|
|
|
lib-y += memcopy.o memset.o checksum.o \
|
|
ashldi3.o ashrdi3.o lshrdi3.o \
|
|
divsi3.o udivsi3.o modsi3.o umodsi3.o mulsi3.o umulsidi3.o \
|
|
usercopy.o strncpy_user.o strnlen_user.o
|
|
lib-$(CONFIG_PCI) += pci-auto.o
|
|
lib-$(CONFIG_KCSAN) += kcsan-stubs.o
|
|
KCSAN_SANITIZE_kcsan-stubs.o := n
|