svn commit: r338052 - head/stand/libsa

Kyle Evans kevans at FreeBSD.org
Sun Aug 19 14:48:33 UTC 2018


Author: kevans
Date: Sun Aug 19 14:48:32 2018
New Revision: 338052
URL: https://svnweb.freebsd.org/changeset/base/338052

Log:
  libsa: Add lshrdi3.c for powerpc* and mips

Modified:
  head/stand/libsa/Makefile

Modified: head/stand/libsa/Makefile
==============================================================================
--- head/stand/libsa/Makefile	Sun Aug 19 14:39:57 2018	(r338051)
+++ head/stand/libsa/Makefile	Sun Aug 19 14:48:32 2018	(r338052)
@@ -73,13 +73,13 @@ SRCS+=	aeabi_memcmp.S aeabi_memcpy.S aeabi_memmove.S a
 
 .if ${MACHINE_CPUARCH} == "powerpc"
 .PATH: ${LIBC_SRC}/quad
-SRCS+=	ashldi3.c ashrdi3.c
+SRCS+=	ashldi3.c ashrdi3.c lshrdi3.c
 SRCS+=	syncicache.c
 .endif
 
 .if ${MACHINE_CPUARCH} == "mips"
 .PATH: ${LIBC_SRC}/quad
-SRCS+=	ashldi3.c ashrdi3.c
+SRCS+=	ashldi3.c ashrdi3.c lshrdi3.c
 .endif
 
 # uuid functions from libc


More information about the svn-src-all mailing list