externals: Switch back to upstream dynarmic

* Thanks mary for the quickfix
This commit is contained in:
GPUCode
2023-02-11 17:28:52 +02:00
parent 96effa46e4
commit 6ba83db6dd
3 changed files with 3 additions and 4 deletions

4
.gitmodules vendored
View File

@ -12,7 +12,7 @@
url = https://github.com/catchorg/Catch2 url = https://github.com/catchorg/Catch2
[submodule "dynarmic"] [submodule "dynarmic"]
path = externals/dynarmic path = externals/dynarmic
url = https://github.com/GPUCode/dynarmic.git url = https://github.com/merryhime/dynarmic.git
[submodule "xbyak"] [submodule "xbyak"]
path = externals/xbyak path = externals/xbyak
url = https://github.com/herumi/xbyak.git url = https://github.com/herumi/xbyak.git
@ -72,4 +72,4 @@
url = https://github.com/g-truc/glm url = https://github.com/g-truc/glm
[submodule "sirit"] [submodule "sirit"]
path = externals/sirit path = externals/sirit
url = https://github.com/GPUCode/sirit url = https://github.com/GPUCode/sirit

View File

@ -62,7 +62,6 @@ endif()
# Dynarmic # Dynarmic
if ("x86_64" IN_LIST ARCHITECTURE OR "arm64" IN_LIST ARCHITECTURE) if ("x86_64" IN_LIST ARCHITECTURE OR "arm64" IN_LIST ARCHITECTURE)
set(DYNARMIC_TESTS OFF) set(DYNARMIC_TESTS OFF)
set(DYNARMIC_NO_BUNDLED_FMT ON)
set(DYNARMIC_FRONTENDS "A32") set(DYNARMIC_FRONTENDS "A32")
add_subdirectory(dynarmic) add_subdirectory(dynarmic)
endif() endif()