svn commit: r245643 - head/lib/libcompiler_rt

Andrew Turner andrew at FreeBSD.org
Sat Jan 19 02:28:45 UTC 2013


Author: andrew
Date: Sat Jan 19 02:28:44 2013
New Revision: 245643
URL: http://svnweb.freebsd.org/changeset/base/245643

Log:
  Add the __aeabi_*divmod functions to the compiler-rt build

Modified:
  head/lib/libcompiler_rt/Makefile

Modified: head/lib/libcompiler_rt/Makefile
==============================================================================
--- head/lib/libcompiler_rt/Makefile	Sat Jan 19 02:24:14 2013	(r245642)
+++ head/lib/libcompiler_rt/Makefile	Sat Jan 19 02:28:44 2013	(r245643)
@@ -181,6 +181,13 @@ SRCS+=	${file}.c
 . endif
 .endfor
 
+.if ${MACHINE_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no"
+SRCS+= aeabi_idivmod.S \
+	aeabi_ldivmod.S \
+	aeabi_uidivmod.S \
+	aeabi_uldivmod.S
+.endif
+
 .if ${MACHINE_CPUARCH} != "mips"
 . if ${MK_INSTALLLIB} != "no"
 SYMLINKS+=libcompiler_rt.a ${LIBDIR}/libgcc.a


More information about the svn-src-all mailing list