redhat - 编译 ffmpeg - 当本地安装 liblame/x264 时如何链接它们
我已经成功安装了 ffmpeg,这是一个基本构建
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg
,现在我已将 liblame 和 x264 安装到 /export/home/userid/bin 并尝试编译 ffmpeg,如下所示:
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg --enable-libmp3lame --enable-libx264 --enable-gpl
我收到错误
ERROR: libmp3lame not found
How can I告诉configure to find for /export/home/bin 中的东西?
谢谢
I've managed to install ffmpeg, a basic build using
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg
Now I've installed liblame and x264 to /export/home/userid/bin and tried to compile ffmpeg as follows:
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg --enable-libmp3lame --enable-libx264 --enable-gpl
And I get the error
ERROR: libmp3lame not found
How can I tell configure to look for things in /export/home/bin?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了。
使用 --enable-cflags 和 --extra-ldflags 进行编译
Solved.
compile using --enable-cflags and --extra-ldflags