summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-04-22 09:27:36 +0000
committerMåns Rullgård <mans@mansr.com>2009-04-22 09:27:36 +0000
commite4ddc8edfa33fb7952cabab08353ec7d9a17cc59 (patch)
tree8009f7a9c62ac0de187dbaae706800a4eb33346f
parent0e1ccdeb1183377fc64ad0c325c5c0c1bc9aa47b (diff)
configure: support Blackfin CPU names with --cpu
Originally committed as revision 18660 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 876a19bb0f..fccbc998d1 100755
--- 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."
;;