我有一个要构建的项目(不是我的)。它具有必须绑定(bind)的c++和Python模块。当启动cmake时,出现以下错误:

/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib/libantlr.a(BitSet.o): relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib/libantlr.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit status
make[2]: *** [python/CModule.so] Error 1
make[1]: *** [pyBinding/CMakeFiles/CMODULE.dir/all] Error 2
make: *** [all] Error 2

我使用apt-get安装了antlr库,据我了解,我应该重新编译该库,但是我不知道应该在antlr库的源代码的哪一部分放-fPIC,还是有另一种方法?

最佳答案

在Ubuntu 14.10中,我有libantlr-dev包,其中包含libantlr.alibantlr-pic.a。我相信您必须使用后一种,它是与PIC一起编译的

关于c++ - 用-fPIC标志重新编译,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29200461/

10-09 12:51