summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAncoron Luciferis <ancoron@chaoslayer.de>2010-01-30 18:07:07 +0000
committerMåns Rullgård <mans@mansr.com>2010-01-30 18:07:07 +0000
commit7b0b81a16d16f583b7a871e19ada8ccc1b6b4aa3 (patch)
tree6b3d13a159945eb3f6098f561b0fa5d61fad1c48 /configure
parent5634889107ac6e7120396bb17739abb40287170d (diff)
PPC: allow --cpu=E500[v2]
Patch by Ancoron Luciferis <ancoron chaoslayer de> Originally committed as revision 21544 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure b/configure
index e32cd30a61..d87de69098 100755
--- a/configure
+++ b/configure
@@ -1912,6 +1912,14 @@ elif enabled ppc; then
cpuflags="-mcpu=cell"
enable ldbrx
;;
+ e500v2)
+ cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
+ disable altivec
+ ;;
+ e500)
+ cpuflags="-mcpu=8540 -mhard-float"
+ disable altivec
+ ;;
esac
elif enabled x86; then