当前位置: 代码迷 >> 综合 >> tre编译中的-shared和-fPIC
  详细解决方案

tre编译中的-shared和-fPIC

热度:20   发布时间:2023-12-22 09:36:25.0

接着昨天的工作,绝大部分问题已经解决,现在拖到最后解决,摆在眼前的问题是:

1、makefile中LDFLAGS有参数-shared,导致报错

/usr/bin/ld: md5c.o: relocation R_ARM_MOVW_ABS_NC against `a local symbol' can not be used when making a shared object; recompile with -fPIC
md5c.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
make: *** [object] Error 1
2、去掉在LDFLAGS中添加-fPIC同样报错,去掉-shared,有没有-fPIC都没有这个报错了,但是会有另一个报错

//usr/lib/crt1.o: In function `_start':
(.text+0x34): undefined reference to `main'
collect2: ld returned 1 exit status
make: *** [object] Error 1

这表明没有-shared选项,编译器默认编译的是一个可执行程序,但是又找不到main函数(-start是内核程序的主函数,应用程序主函数为main,是供-start调用的),看来,-shared不能去掉
那么为什么报错提示会说recompile with -fPIC呢?
原来,人家说的是“recompile”with -fPIC,而不是用-fPIC链接,所以-fPIC应该添加到CPPFLAGS += -fPIC中,而非LDFLAGS。将mainservice的makefile添上这一行命令,在他用到的所有链接对象(包括libtinyxml.a)的makefile中都添上,再编译,就ok了。
  相关解决方案