summaryrefslogtreecommitdiffstats
path: root/arch/arm/lib/Makefile
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-12-16 15:32:16 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-12-16 15:39:12 +0100
commitb72645bfa50f4a1fc59a169e0e11d5bf05fed2c2 (patch)
tree876a425b6207c552b5fc4699e645d12ae3f241a1 /arch/arm/lib/Makefile
parent8fe23d32d9c59823cc6c8417c380553eb121bbc5 (diff)
downloadbarebox-b72645bfa50f4a1fc59a169e0e11d5bf05fed2c2.tar.gz
barebox-b72645bfa50f4a1fc59a169e0e11d5bf05fed2c2.tar.xz
arm/lib: add missing abi helper functions __aeabi_idivmod, __aeabi_uidivmod
With EABI we have two new helper functions __aeabi_idivmod and __aeabi_uidivmod. This patch adds them to barebox. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'arch/arm/lib/Makefile')
-rw-r--r--arch/arm/lib/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile
index 26c318b0eb..c1ac1aaf72 100644
--- a/arch/arm/lib/Makefile
+++ b/arch/arm/lib/Makefile
@@ -16,6 +16,8 @@ obj-y += io-readsl.o
obj-y += io-writesb.o
obj-y += io-writesw-armv4.o
obj-y += io-writesl.o
+obj-$(CONFIG_AEABI) += __aeabi_idivmod.o
+obj-$(CONFIG_AEABI) += __aeabi_uidivmod.o
obj-$(CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS) += memcpy.o
obj-$(CONFIG_ARM_OPTIMZED_STRING_FUNCTIONS) += memset.o