add dummy function for arm2009q3 toolchain
authorMinkyu Kang <mk7.kang@samsung.com>
Wed, 10 Mar 2010 08:23:48 +0000 (17:23 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 10 Mar 2010 08:23:48 +0000 (17:23 +0900)
arm2009q3 toolchain generate bellow linking error.
undefined reference to `__aeabi_unwind_cpp_pr0'

This patch fix this problem. (workaround)

Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
lib_arm/eabi_compat.c

index 86eacf1..2129b4f 100644 (file)
@@ -16,3 +16,7 @@ int raise (int signum)
        printf("raise: Signal # %d caught\n", signum);
        return 0;
 }
+
+void __aeabi_unwind_cpp_pr0(void)
+{
+}