Commit 6273b953 authored by diego's avatar diego

Blackfin processor support

patch by Michael Benjamin, neuroptik gmail com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6056 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c4392e5b
......@@ -394,6 +394,9 @@ case "$cpu" in
ia64)
cpu="ia64"
;;
bfin)
cpu="bfin"
;;
*)
cpu="unknown"
;;
......@@ -1656,6 +1659,9 @@ elif test "$cpu" = "m68k" ; then
elif test "$cpu" = "ia64" ; then
echo "TARGET_ARCH_IA64=yes" >> config.mak
echo "#define ARCH_IA64 1" >> $TMPH
elif test "$cpu" = "bfin" ; then
echo "TARGET_ARCH_BFIN=yes" >> config.mak
echo "#define ARCH_BFIN 1" >> $TMPH
fi
echo "#define TUNECPU $TUNECPU" >> $TMPH
if test "$bigendian" = "yes" ; then
......
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