diff options
author | vipyne <vipyne@gmail.com> | 2024-10-12 17:41:29 -0500 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2024-10-13 13:28:49 +0200 |
commit | f5403e5f1ea03c66d2022fd6dcba93b031d07f4d (patch) | |
tree | 4ea44602c0613aa9a56cc0ba8ba8b7958a264a13 | |
parent | 7e1d72589eca162d65987a9f6004417656fb6077 (diff) | |
download | ffmpeg-f5403e5f1ea03c66d2022fd6dcba93b031d07f4d.tar.gz |
configure: suggest installing nasm before using --disable-x86asm
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6448,7 +6448,7 @@ EOF for program in $x86asmexe nasm; do probe_x86asm $program && break done - disabled x86asm && die "nasm not found or too old. Use --disable-x86asm for a crippled build." + disabled x86asm && die "nasm not found or too old. Please install/update nasm or use --disable-x86asm for a build without hand-optimized assembly." X86ASMFLAGS="-f $objformat" test -n "$extern_prefix" && append X86ASMFLAGS "-DPREFIX" case "$objformat" in |