Browse code

PPC: allow --cpu=E500[v2]

Patch by Ancoron Luciferis <ancoron chaoslayer de>

Originally committed as revision 21544 to svn://svn.ffmpeg.org/ffmpeg/trunk

Ancoron Luciferis authored on 2010/01/31 03:07:07
Showing 1 changed files
... ...
@@ -1912,6 +1912,14 @@ elif enabled ppc; then
1912 1912
             cpuflags="-mcpu=cell"
1913 1913
             enable ldbrx
1914 1914
         ;;
1915
+        e500v2)
1916
+            cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
1917
+            disable altivec
1918
+        ;;
1919
+        e500)
1920
+            cpuflags="-mcpu=8540 -mhard-float"
1921
+            disable altivec
1922
+        ;;
1915 1923
     esac
1916 1924
 
1917 1925
 elif enabled x86; then