日期:2014-05-16  浏览次数:20672 次

linux 64位编译出错。linux 32位可以编译过。
../../x86_64-suse-linux/bin/ld: ./CCompress.o: relocation R_X86_64_32 against `DataBuf' can not be used when making a shared object; recompile with -fPIC
./text.o: could not read symbols: Bad value

------解决方案--------------------
那你在gcc 或者 g++ 的FLAGS部分加上 -fPIC,,即编译成位置无关代码.(Position Indepent Code)
------解决方案--------------------
clean一遍,对于那个文件,再加上那个-fPIC编译一遍。