arm-linux下交叉編譯json-c-0.9庫(kù)遇到的編譯問(wèn)題
編譯json-c arm版本 貌似可以順利通過(guò), 但是鏈接json-c動(dòng)態(tài)庫(kù)的時(shí)候會(huì)有提示: undefined reference to rpl_malloc
本文引用地址:http://m.butianyuan.cn/article/201611/316651.htm[我的環(huán)境]
虛擬機(jī):vmware 7.1.3
操作系統(tǒng):ubuntu8.04
arm-linux-gcc版本: 4.2.2
[解決方案]
config.h.in里定義了
#undef malloc
#undef realloc
用//把這兩行注釋掉,
然后
autoconf
./configure --prefix=/usr/local/json-c-0.9forarm --host=arm-linux 這樣可自動(dòng)調(diào)用arm-linux-gcc, 安裝在/usr/local/json-c-0.9forarm 下,不要按默認(rèn)的在/usr/local/lib下,和宿主機(jī)混了。
make && make install
這樣就OK了。 至于為什么只生成了.a沒(méi)有生成了.so,不管它了,能用已經(jīng)萬(wàn)幸了。
最后,別忘了在編譯時(shí) -L/usr/local/json-c-0.9forarm/lib/ 指定lib路徑。
評(píng)論