ffmpeg想做静态编译,编译到libxml2的时候总是提示缺少python.h
如下面的报错
libxml.c:15:20: 致命错误:Python.h:没有那个文件或目录
#include
编译中断。
In file included from types.c:9:0:
libxml_wrap.h:1:20: 致命错误:Python.h:没有那个文件或目录
#include
编译中断。
libxml2-py.c:4:20: 致命错误:Python.h:没有那个文件或目录
#include
解决方式如下:
安装python
wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tar.xz
tar -xf Python-3.8.0.tar.xz
./configure --prefix=--prefix=/root/dev_env/ffmpeg-static/target/ --disable-shared
make -j16
make install
只安装完python之后重新编译libxml2还是会有上面的报错,
这时候关键就是链接到具体的头文件位置
编译libxml2的时候指定到具体的头文件,即指定python的头文件路径
按下面命令方式编译libxml2即可
./configure --prefix=/root/dev_env/ffmpeg-static/target/ CPPFLAGS="-I/root/dev_env/ffmpeg-static/target/include/python3.8" LDFLAGS="-L/root/dev_env/ffmpeg-static/target/lib" --enable-shared=no --enable-static=yes
以下三行基本上可以解决你ffmpeg静态编译的时候出现的大部分问题
CPPFLAGS : 预处理器需要的选项 如:-I (大写i指定头文件路径)
CFLAGS:编译的时候使用的参数 –Wall –g -c
LDFLAGS :链接库使用的选项 –L -l (大写L指定动态库的路径,小写L指定动态库的名称)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)