2

正如问题所述,我需要应用这些编译器/链接器设置中的任何一个。我正在使用 Code::Blocks 10.05。我浏览了所有构建设置屏幕。我找不到在哪里应用这些设置。我得到以下输出:

-------------- Build: Release in 39dll-4-Linux ---------------

Linking dynamic library: ./39DLL.so
/usr/bin/ld: obj/Release/buffer.o: relocation R_X86_64_32 against `CBuffer::retval' can not be used when making a shared object; recompile with -fPIC
obj/Release/buffer.o: could not read symbols: Bad value
collect2: ld returned 1 exit status
Process terminated with status 1 (0 minutes, 0 seconds)
0 errors, 0 warnings
4

1 回答 1

4

转到:项目->构建选项->编译器设置->其他选项。

在左侧,您将看到带有构建目标的树。它看起来像这样:ProjectName Debug Release

单击树的每个节点-fPIC并在文本框中输入每个节点,然后按 OK 保存。这样,将为所有目标添加标志。

于 2012-09-11T15:55:35.620 回答