summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJessica Clarke <jrtc27@jrtc27.com>2021-07-11 05:28:24 +0300
committerAnup Patel <anup@brainfault.org>2021-07-11 18:31:44 +0300
commit17729d44daf879e015950b0e9636afceefea0a59 (patch)
treeb367007dadc7d1c2cf3de4250addec137dc5414a /Makefile
parent2942777425516f7b31181fbaecc5485263dfcb01 (diff)
downloadopensbi-17729d44daf879e015950b0e9636afceefea0a59.tar.xz
lib: utils: Drop dependency on libgcc by importing part of FreeBSD's libquad
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5c188d5..129b8ed 100644
--- a/Makefile
+++ b/Makefile
@@ -279,7 +279,7 @@ ASFLAGS += $(firmware-asflags-y)
ARFLAGS = rcs
ELFFLAGS += $(USE_LD_FLAG)
-ELFFLAGS += -Wl,--build-id=none -Wl,-N -static-libgcc -lgcc
+ELFFLAGS += -Wl,--build-id=none -Wl,-N
ELFFLAGS += $(platform-ldflags-y)
ELFFLAGS += $(firmware-ldflags-y)