Skip to content

Commit

Permalink
Merge pull request iCatButler#11 from Mystro256/master
Browse files Browse the repository at this point in the history
Disable autoselect for PPC dynarec since it's broken
  • Loading branch information
iCatButler authored Mar 6, 2019
2 parents 5a6d59e + eac8516 commit 62467b8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions libpcsxcore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.")
Expand Down

0 comments on commit 62467b8

Please sign in to comment.