diff options
| author | iCatButler <i.am.catbutler@gmail.com> | 2019-03-06 11:37:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-06 11:37:17 +0000 |
| commit | 62467b86871aee3d70c7445f3cb79f0858ec566e (patch) | |
| tree | 3ff14a0214a5881e695f5c4799e8361ba15c8c87 | |
| parent | 5a6d59e9a1c2047799be31dbcc5730496d3f30aa (diff) | |
| parent | eac8516c484029b6a94a6783f7a051743d8173bc (diff) | |
Merge pull request #11 from Mystro256/master
Disable autoselect for PPC dynarec since it's broken
| -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.") |
