Commit 26ce6360 authored by nickols_k's avatar nickols_k

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@275 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dad00103
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment