Merge pull request #9198 from liamwhite/arm64

Initial ARM64 support
This commit is contained in:
bunnei 2022-11-10 17:11:27 -08:00 committed by GitHub
commit 4e4c74cbe7
15 changed files with 68 additions and 36 deletions

View file

@ -385,6 +385,6 @@ if (NOT APPLE)
target_compile_definitions(yuzu PRIVATE HAS_OPENGL)
endif()
if (ARCHITECTURE_x86_64)
if (ARCHITECTURE_x86_64 OR ARCHITECTURE_arm64)
target_link_libraries(yuzu PRIVATE dynarmic)
endif()