[coreboot-gerrit] New patch to review for coreboot: arm: enhance eabi compat functions

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Thu Jul 9 00:00:09 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10857

-gerrit

commit 58bc840948c36b537bd8461a909ea3fbb4ba1fbb
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Wed Jul 8 23:18:11 2015 +0200

    arm: enhance eabi compat functions
    
    This fixes issues with our clang reference toolchain on ARM.
    
    Change-Id: Ib754941059285f15332bc694814aff6285969545
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 src/arch/arm/eabi_compat.c | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/arch/arm/eabi_compat.c b/src/arch/arm/eabi_compat.c
index 0c79cd5..7c818c6 100644
--- a/src/arch/arm/eabi_compat.c
+++ b/src/arch/arm/eabi_compat.c
@@ -9,6 +9,9 @@
  * License, or (at your option) any later version.
  */
 
+#include <stdint.h>
+#include <stddef.h>
+#include <string.h>
 #include <console/console.h>
 
 /* FIXME(dhendrix): prototypes added for assembler */
@@ -23,9 +26,21 @@ int raise (int signum)
 void __aeabi_unwind_cpp_pr0(void) __attribute__((used));
 void __aeabi_unwind_cpp_pr0(void)
 {
-};
+}
 
 void __aeabi_unwind_cpp_pr1(void) __attribute__((used));
 void __aeabi_unwind_cpp_pr1(void)
 {
-};
+}
+
+void __aeabi_memcpy(void *dest, const void *src, size_t n);
+void __aeabi_memcpy(void *dest, const void *src, size_t n)
+{
+	(void) memcpy(dest, src, n);
+}
+
+void __aeabi_memset(void *dest, size_t n, int c);
+void __aeabi_memset(void *dest, size_t n, int c)
+{
+	(void) memset(dest, c, n);
+}



More information about the coreboot-gerrit mailing list