File: 02_disable-ppc-auto-dynarec.patch

package info (click to toggle)
pcsxr 1.9.94-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,880 kB
  • sloc: ansic: 117,284; objc: 8,159; cpp: 1,140; makefile: 315; asm: 145; pascal: 30; sh: 20
file content (17 lines) | stat: -rw-r--r-- 510 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Description: Do not enable dynarec on ppc when built with --enable-dynarec=auto
 PowerPC dynarec code seems unsupported and not working.
Author: Andrey Rahmatullin <wrar@wrar.name>
Forwarded: not-needed
Last-Update: 2012-03-03

--- a/configure.ac
+++ b/configure.ac
@@ -220,8 +220,6 @@ if test "x$DYNARECSEL" = xauto; then
 		DYNARECSEL="x86"
 	elif expr x"$build_cpu" : 'xx86_64' > /dev/null; then
 		DYNARECSEL="x86_64"
-	elif expr x"$build_cpu" : 'xpowerpc' > /dev/null; then
-		DYNARECSEL="ppc"
 	fi
 fi