diff options
| author | Mystro256 <alexjnewt@hotmail.com> | 2019-02-13 10:45:30 -0500 |
|---|---|---|
| committer | Mystro256 <alexjnewt@hotmail.com> | 2019-02-13 10:45:30 -0500 |
| commit | eac8516c484029b6a94a6783f7a051743d8173bc (patch) | |
| tree | e0514d37c3d1dfb4dad90a3ba46b8801f3dd2a11 /libpcsxcore | |
| parent | 7ce3857e14aa0e6e00c52b918661933a2b2ecc39 (diff) | |
| download | pcsxr-eac8516c484029b6a94a6783f7a051743d8173bc.tar.gz | |
Disable autoselect for PPC dynarec since it's broken
Diffstat (limited to 'libpcsxcore')
| -rw-r--r-- | libpcsxcore/CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libpcsxcore/CMakeLists.txt b/libpcsxcore/CMakeLists.txt index a0477aac..b8caef4c 100644 --- a/libpcsxcore/CMakeLists.txt +++ b/libpcsxcore/CMakeLists.txt @@ -37,8 +37,11 @@ set(CMAKE_POSITION_INDEPENDENT_CODE OFF) #for x86 if (${DYNAREC} STREQUAL "auto") if (_ARCH_PPC) - set(DYNAREC_PPC 1) - message(STATUS "Autodetected PPC dynarec.") +#if anyone ever fixes ppc dynarec +# set(DYNAREC_PPC 1) +# message(STATUS "Autodetected PPC dynarec.") + message(STATUS "Autodetected PPC dynarec is broken, sorry.") + add_definitions(-DNOPSXREC) elseif(_ARCH_64) set(DYNAREC_64 1) message(STATUS "Autodetected x86_64 dynarec.") |
