PPC: allow --cpu=E500[v2]

Patch by Ancoron Luciferis <ancoron chaoslayer de>

Originally committed as revision 21544 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ancoron Luciferis 2010-01-30 18:07:07 +00:00 committed by Måns Rullgård
parent 5634889107
commit 7b0b81a16d
1 changed files with 8 additions and 0 deletions

8
configure vendored
View File

@ -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