diff options
author | Michael Benjamin <neuroptik@gmail.com> | 2006-08-23 21:19:39 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-23 21:19:39 +0000 |
commit | 81a9b052df2626e85408b955233b202ff16a4804 (patch) | |
tree | aa238f9b80c59d2aa02002dd98aae542c95bbd13 /configure | |
parent | 52e5461288ba54d2bbeb76bba863ae6d970ce90d (diff) | |
download | ffmpeg-81a9b052df2626e85408b955233b202ff16a4804.tar.gz |
Blackfin processor support
patch by Michael Benjamin, neuroptik gmail com
Originally committed as revision 6056 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |