diff options
| author | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-09-07 00:55:05 +0000 |
|---|---|---|
| committer | SND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2010-09-07 00:55:05 +0000 |
| commit | 28bd1fcb797ea86e92eea358c124eede6bdf62c0 (patch) | |
| tree | 34cc2ddd5672b5d8db850837fcc5880cee5cb4bd /configure.ac | |
| parent | 01f9db90eab920aa6ce7a51266c49b54ea01b1dd (diff) | |
| download | pcsxr-28bd1fcb797ea86e92eea358c124eede6bdf62c0.tar.gz | |
ported the change in r56828 to dynarec (is the check in psxBASIC() really necessary?), removed powerpc dynarec (cannot test and likely broken).
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@56896 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac index 326a221e..d16d5d50 100644 --- a/configure.ac +++ b/configure.ac @@ -143,9 +143,8 @@ fi AM_CONDITIONAL(ARCH_X86, false) AM_CONDITIONAL(ARCH_X86_64, false) -AM_CONDITIONAL(ARCH_PPC, false) -AC_ARG_ENABLE(dynarec, [ --enable-dynarec=... force selection of dynamic recompiler platform (auto/no/x86/x86_64/ppc) (default: auto)], +AC_ARG_ENABLE(dynarec, [ --enable-dynarec=... force selection of dynamic recompiler platform (auto/no/x86/x86_64) (default: auto)], [ DYNAREC="$enableval" ],[ DYNAREC="auto" ]) if test "x$DYNAREC" = xauto; then @@ -154,8 +153,6 @@ else if test "x$DYNAREC" = xx86; then DYNARECSEL="x86" else if test "x$DYNAREC" = xx86_64; then DYNARECSEL="x86_64" -else if test "x$DYNAREC" = xppc; then - DYNARECSEL="ppc" else if test "x$DYNAREC" = xno; then DYNARECSEL="no" else @@ -165,7 +162,6 @@ fi fi fi fi -fi if test "x$DYNARECSEL" = xauto; then if expr x"$target_cpu" : 'xi.86' > /dev/null; then @@ -175,10 +171,6 @@ if test "x$DYNARECSEL" = xauto; then if expr x"$target_cpu" : 'xx86_64' > /dev/null; then DYNARECSEL="x86_64" fi - - if expr x"$target_cpu" : 'xpowerpc' > /dev/null; then - DYNARECSEL="ppc" - fi fi if test "x$DYNARECSEL" = xno; then @@ -200,12 +192,6 @@ if test "x$DYNARECSEL" = xx86_64; then AC_MSG_RESULT([Dynamic Recompiler selected: x86_64]) fi -if test "x$DYNARECSEL" = xppc; then - AC_DEFINE([__ppc__], [1], [Define if we are compiling for powerpc architectures.]) - AM_CONDITIONAL(ARCH_PPC, true) - AC_MSG_RESULT([Dynamic Recompiler selected: ppc]) -fi - AC_C_BIGENDIAN(AC_DEFINE([__BIGENDIAN__],[],[define on a big endian system])) AC_DEFINE([__LINUX__], [1], [Define if building on a GNU/Linux system.]) |
