Browse Source

x86: Require yasm OR --disable-asm OR --disable-mmx OR --disable-yasm to build.

Originally committed as revision 24950 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Alex Converse 14 years ago
parent
commit
9cca1e4096
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      configure

+ 3
- 2
configure View File

@@ -2569,9 +2569,10 @@ EOF
case "$objformat" in
elf) enabled debug && append YASMFLAGS "-g dwarf2" ;;
esac
if ! disabled yasm; then
if ! disabled_any asm mmx yasm; then
check_yasm "pabsw xmm0, xmm0" && enable yasm ||
warn "yasm not found, performance will suffer"
die "yasm not found, performance will suffer. " \
"If you really want to compile without yasm, configure with --disable-yasm."
fi

case "$cpu" in


Loading…
Cancel
Save