backend/rv64: Add biscuit as the assembler

This commit is contained in:
Yang Liu
2023-12-31 18:09:00 +08:00
committed by Merry
parent a4b9b431b0
commit 4324b262aa
11 changed files with 86 additions and 22 deletions

View File

@@ -15,6 +15,14 @@ set(BUILD_TESTING OFF)
# simply add the directory to that file as a subdirectory
# to have CMake automatically recognize them.
# biscuit
if (NOT TARGET biscuit::biscuit)
if ("riscv" IN_LIST ARCHITECTURE)
add_subdirectory(biscuit)
endif()
endif()
# catch
if (NOT TARGET Catch2::Catch2WithMain)