FFmpeg 1.0 Angel --soname-prefix=PREFIX

FFmpeg 1.0 Angel --soname-prefix=PREFIX

我正在尝试编译FFmpeg 1.0“天使”采用以下配置:

./configure  --enable-gpl --enable-encoder=mpeg2video  --enable-version3 /
             --soname-prefix="/pc/temp/myproject/"

然后编译返回以下错误:

Unknown option "--soname-prefix".
See ./configure --help for available options.

当我运行 ffmpeg/configure --help 命令时。“--soname 前缀”选项不可用标准选项列表但此选项可用FFmpeg 0.11.2“幸福”

请帮助我,看看最新的 FFMPEG 1.0 中是否引入了任何新选项

谢谢

答案1

--soname-prefix在脚本中找不到./configure两个版本0.11.21.0。但我认为,如果这是库路径的一个选项,你需要--extra-ldflags="-L/your/libs"

相关内容