compile with -fPIC

Posted WFUF

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了compile with -fPIC相关的知识,希望对你有一定的参考价值。

在新公司工作第四天,依然要编译FFmpeg,不同的是难度大了,以前遇到什么参数编译不过的,就去掉,因为不是专业做视频的,但是新公司绕不过了。

编译FFmpeg动态库的时候发现链接某些静态库的时候会报错:

relocation R_X86_64_32S against `cmnMemAlloc can not be used when making a shared object; recompile with -fPIC

基础不扎实,不知道make的时候还可以添加参数,查了很多资料,最后从一个回答中试出解决方案:

再编译存在问题的库时,调用“make”命令的时候,添加“CFLAGS=‘-fpic‘”参数,就可以了。

举个栗子:

我编译FFmpeg时报这样的错:

/usr/bin/ld: /usr/local/lib/libvo-amrwbenc.a(wrapper.o): relocation R_X86_64_32S against `cmnMemAlloc can not be used when making a shared object; recompile with -fPIC

意思是链接的“libvo-amrwbenc.a”库需要添加“-fPIC”重新编译,那我就在编译“libvo-amrwbenc.a”时,调用

make CFLAGS=‘$CFLAGS -fpic

有的./configure 时也有这样的参数“CFLAGS”,也可以在这里添加

 

编译动态库要链接静态库才会出现这问题,编译静态库链接静态库则不会

有个回答如是说:

The solution was to compile everything with -fPIC, and link shared objects with -shared.

Add -fPIC to CFLAGS or CXXFLAGS for make-based projects.

以上是关于compile with -fPIC的主要内容,如果未能解决你的问题,请参考以下文章

Compile OpenSSL with Visual Studio 2019

Compiling R-3.4.3 on CentOS 6.10 with GNU

Torch not compiled with CUDA enabled

Torch not compiled with CUDA enabled

[TypeScript] Loading Compiled TypeScript Files in Browser with SystemJS

Warning: Function created with compilation errors.