diff options
| author | Wolfgang Denk <[email protected]> | 2010-05-10 23:08:02 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2010-05-15 19:50:36 +0200 |
| commit | cd4b02be1bb732f3990801ff81b57bd597b1d5b6 (patch) | |
| tree | 63a27352c76945784faf96d69b749d5c38ce5dcd | |
| parent | 7b43db92110ec2f15c5f7187a165f2928464966b (diff) | |
ARM: add __aeabi_unwind_cpp_pr0() function to avoid linker complaints
Signed-off-by: Wolfgang Denk <[email protected]>
Tested-by: Thomas Weber <[email protected]>
| -rw-r--r-- | arch/arm/lib/eabi_compat.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c index 86eacf1b0e9..eb3e26d4d20 100644 --- a/arch/arm/lib/eabi_compat.c +++ b/arch/arm/lib/eabi_compat.c @@ -16,3 +16,8 @@ int raise (int signum) printf("raise: Signal # %d caught\n", signum); return 0; } + +/* Dummy function to avoid linker complaints */ +void __aeabi_unwind_cpp_pr0(void) +{ +}; |
