undefined reference to `__gxx_personality_sj0'错误解决办法
时间:2015-03-04 12:37:23
收藏:0
阅读:1302
在交叉编译一个.cpp库时,出现如下错误:
undefined reference to `__gxx_personality_sj0‘
undefined reference to `operator new[](unsigned int)‘
解决办法:
修改库中的Makefile文件,在$(LD) 后面的选项中增加 -lsupc++
原文:http://www.cnblogs.com/caoyongan/p/4312765.html
评论(0)