鲲鹏环境下编译ffmpeg-4.0报nasm/yasm not found or too old解决方法
收藏回复举报
鲲鹏环境下编译ffmpeg-4.0报nasm/yasm not found or too old解决方法
发表于2023-10-20 15:35:51
0 查看

【问题描述】

鲲鹏环境下编译ffmpeg-4.0执行./configure报nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.错误,详细报错如下:

nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.

If you think configure made a mistake, make sure you are using the latest
version from Git.  If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.

【解决方法】

方法1:

先执行yum -y install yasmyum -y install nasm安装yasm或nasm

然后再次执行./configure

方法2:

直接执行./configure --disable-x86asm

本帖最后由 匿名用户2025/04/01 16:36:24 编辑

我要发帖子