diff options
author | selsta <selsta@sent.at> | 2024-03-09 21:15:28 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2024-03-09 21:15:28 +0100 |
commit | c40d8b213c716c6ec90a258cf813760a5b5d08a5 (patch) | |
tree | f9f9ba08a246900f32daa664e07397b1211e553d | |
parent | Merge pull request #9225 (diff) | |
download | monero-c40d8b213c716c6ec90a258cf813760a5b5d08a5.tar.xz |
depends: add riscv64 linux build tag
-rw-r--r-- | contrib/depends/toolchain.cmake.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/depends/toolchain.cmake.in b/contrib/depends/toolchain.cmake.in index e44882f4c..fc502c596 100644 --- a/contrib/depends/toolchain.cmake.in +++ b/contrib/depends/toolchain.cmake.in @@ -141,6 +141,9 @@ elseif(ARCHITECTURE STREQUAL "aarch64") endif() if(ARCHITECTURE STREQUAL "riscv64") + if(CMAKE_SYSTEM_NAME STREQUAL "Linux") + set(BUILD_TAG "linux-riscv64") + endif() set(ARCH_ID "riscv64") set(ARCH "rv64gc") endif() |