mirror of
https://gitlab.com/qemu-project/opensbi.git
synced 2025-07-03 04:40:24 +08:00

We only need libgcc for 64-bit division on RV32. Whilst GCC toolchains bundle libgcc, Clang toolchains tend not to ship libclang_rt.builtins given every compiler is a cross-compiler for every target and so you would need a silly number of builds of it, with only the native library available; only vendor-provided Clang toolchains specifically for bare metal cross-compiling are likely to provide it. Thus, import part of FreeBSD's implementation of the division support functions needed and stop linking against libgcc. Signed-off-by: Jessica Clarke <jrtc27@jrtc27.com> Reviewed-by: Anup Patel <anup.patel@wdc.com> Tested-by: Anup Patel <anup.patel@wdc.com>
15 lines
403 B
Makefile
15 lines
403 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2021 Jessica Clarke <jrtc27@jrtc27.com>
|
|
#
|
|
|
|
ifeq ($(PLATFORM_RISCV_XLEN),32)
|
|
libsbiutils-objs-y += libquad/divdi3.o
|
|
libsbiutils-objs-y += libquad/moddi3.o
|
|
libsbiutils-objs-y += libquad/qdivrem.o
|
|
libsbiutils-objs-y += libquad/udivdi3.o
|
|
libsbiutils-objs-y += libquad/umoddi3.o
|
|
libsbiutils-genflags-y += -I$(libsbiutils_dir)/libquad/include
|
|
endif
|