aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-05-01 15:26:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-05-01 15:26:51 -0700
commit9760f9d7c43fb5de750c9a7b59ee4fee14b61dbd (patch)
treefd0732d06a801f384b23ef01197d7dcc6d3b5764
parent05154faa0c9d64db8f4672a2ec816eede2acc5ac (diff)
downloadklibc-9760f9d7c43fb5de750c9a7b59ee4fee14b61dbd.tar.gz
[klibc] MIPS: add new libgcc functionsklibc-1.3.16
MIPS can't use the standard libgcc from klibc functions, so we need to make sure we have a full compliment. This adds the find-zero functions and 64-bit shifts. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--usr/klibc/arch/mips/Makefile.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/klibc/arch/mips/Makefile.inc b/usr/klibc/arch/mips/Makefile.inc
index 01f6f290f7582..311bdfccc4ab9 100644
--- a/usr/klibc/arch/mips/Makefile.inc
+++ b/usr/klibc/arch/mips/Makefile.inc
@@ -12,6 +12,11 @@ KLIBCARCHOBJS = \
arch/$(KLIBCARCH)/vfork.o \
arch/$(KLIBCARCH)/setjmp.o \
arch/$(KLIBCARCH)/syscall.o \
+ libgcc/__clzsi2.o \
+ libgcc/__clzdi2.o \
+ libgcc/__ashldi3.o \
+ libgcc/__ashrdi3.o \
+ libgcc/__lshrdi3.o \
libgcc/__divdi3.o \
libgcc/__moddi3.o \
libgcc/__udivdi3.o \