Chinaunix首页 | 论坛 | 博客
  • 博客访问: 975625
  • 博文数量: 109
  • 博客积分: 554
  • 博客等级: 中士
  • 技术积分: 2577
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-04 12:49
文章分类

全部博文(109)

文章存档

2019年(5)

2016年(7)

2015年(9)

2014年(1)

2013年(71)

2012年(16)

分类: 嵌入式

2013-05-23 14:42:49

用arm-none-linux-gnueabi-gcc 编译uboot是
抱怨 add __aeabi_unwind_cpp_pr0() 解决补丁,
以前一直认为是编译器不匹配

针对u-boot-2009.08
diff --git a/lib_arm/eabi_compat.c b/lib_arm/eabi_compat.c
index 86eacf1..eb3e26d 100755
--- a/lib_arm/eabi_compat.c
+++ b/lib_arm/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)
+{
+};

阅读(3243) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~