Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>

Originally committed as revision 275 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Nick Kurshev 23 years ago
parent 1e98dffb7a
commit 91d1f1a432
  1. 8
      configure

8
configure vendored

@ -35,6 +35,10 @@ case "$cpu" in
cpu="armv4l"
mmx="no"
;;
alpha)
cpu="alpha"
mmx="no"
;;
*)
mmx="no"
;;
@ -146,6 +150,10 @@ if [ "$cpu" = "armv4l" ]; then
echo "TARGET_ARCH_ARMV4L=yes" >> config.mak
echo "#define ARCH_ARMV4L 1" >> config.h
fi
if [ "$cpu" = "alpha" ]; then
echo "TARGET_ARCH_ALPHA=yes" >> config.mak
echo "#define ARCH_ALPHA 1" >> config.h
fi
if [ "$mmx" = "yes" ] ; then
echo "TARGET_MMX=yes" >> config.mak
echo "#define HAVE_MMX 1" >> config.h

Loading…
Cancel
Save