relocation R_X86_64_PC32 against symbol `_ZTVN9xxxxxE' can not be used when making a shared object;

Linux 下 编译动态库的时候,碰到如下错误提示,很奇怪。不是代码本身的问题

/usr/bin/ld: ./xxxxx.o: relocation R_X86_64_PC32 against symbol `_ZTVN9xxxxxE' can not be used when making a shared object; recompile with -fPIC
makefile:49: recipe for target 'libxxxxx.so' failed
/usr/bin/ld: 最后的链结失败: 错误的值
collect2: error: ld returned 1 exit status

大概意思是缺少 -fPIC 这个编译参数

如果你是MakeFile方式的话,可以直接在gcc下增加,注意生成.o文件的时候要加,在后面打包成 .so的时候也要,如下所示:

$gcc-fPIC -c hello.c

$gcc-fPIC -c main.c

$gcc -shared -fPIC -o hello hello.o main.o 

但是,我是通过eclipse进行编译so文件的,用到gcc 也用g++,意思也是要加-fPIC

解决办法:

1. 选择工程项目,点击右键选择 属性

2. C/C++ Build - Settings - Tool Settings

3. 增加 -fPIC 如下图:(有两处,注意大小写、空格)

relocation R_X86_64_PC32 against symbol `_ZTVN9xxxxxE' can not be used when making a shared object;_第1张图片

你可能感兴趣的:(Linux,Linux,错误)