Enable riscv64 dynarmic backend

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2026-03-29 21:28:26 +00:00
parent c7b501d798
commit d24c985b80
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6
4 changed files with 5 additions and 5 deletions

View file

@ -126,7 +126,7 @@ if ("arm64" IN_LIST ARCHITECTURE OR DYNARMIC_TESTS)
find_package(oaknut 2.0.1 CONFIG)
endif()
if ("riscv" IN_LIST ARCHITECTURE)
if ("riscv64" IN_LIST ARCHITECTURE)
find_package(biscuit 0.9.1 REQUIRED)
endif()

View file

@ -258,7 +258,7 @@ if ("arm64" IN_LIST ARCHITECTURE)
)
endif()
if ("riscv" IN_LIST ARCHITECTURE)
if ("riscv64" IN_LIST ARCHITECTURE)
target_link_libraries(dynarmic PRIVATE biscuit::biscuit)
target_sources(dynarmic PRIVATE
@ -291,7 +291,7 @@ if ("riscv" IN_LIST ARCHITECTURE)
backend/riscv64/a32_interface.cpp
backend/riscv64/code_block.h
)
message(FATAL_ERROR "TODO: Unimplemented frontend for this host architecture")
message(WARNING "TODO: Incomplete frontend for this host architecture")
endif()
if (WIN32)