Merge pull request #11 from Mystro256/master

Disable autoselect for PPC dynarec since it's broken
This commit is contained in:
iCatButler 2019-03-06 11:37:17 +00:00 committed by GitHub
commit 62467b8687
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -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.")