configure: support Blackfin CPU names with --cpu
authorMåns Rullgård <mans@mansr.com>
Wed, 22 Apr 2009 09:27:36 +0000 (09:27 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 22 Apr 2009 09:27:36 +0000 (09:27 +0000)
Originally committed as revision 18660 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 876a19b..fccbc99 100755 (executable)
--- a/configure
+++ b/configure
@@ -1844,6 +1844,9 @@ if test $cpu != "generic"; then
         ev4|ev45|ev5|ev56|pca56|ev6|ev67)
             enabled ccc && add_cflags -arch $cpu || add_cflags -mcpu=$cpu
         ;;
+        bf*)
+            add_cflags -mcpu=$cpu
+        ;;
         *)
             echo "WARNING: Unknown CPU \"$cpu\", ignored."
         ;;