summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-09-26 19:57:56 +0000
committerMåns Rullgård <mans@mansr.com>2007-09-26 19:57:56 +0000
commit6b19786b1187e0c194be3b9e76091e6f86a6e821 (patch)
treeb6594c67a7255a66abeef706e52a9a835f0087ed
parent53b73365001bc85f6e97b4be8905b45edec119aa (diff)
set -mcpu for ARM
Originally committed as revision 10595 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 5c64fe3764..f2d3066619 100755
--- a/configure
+++ b/configure
@@ -1369,6 +1369,9 @@ if test $cpu != "generic"; then
add_cflags "-mfdpic"
add_ldflags "-mfdpic"
;;
+ arm*)
+ add_cflags "-mcpu=$cpu"
+ ;;
*)
echo "WARNING: Unknown CPU \"$cpu\", ignored."
;;