diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-03-11 15:52:09 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-03-11 15:52:09 -0400 |
commit | 8e61ddb413c0f1a8931f7d7bd3f998063d1fc141 (patch) | |
tree | f9f9ba08a246900f32daa664e07397b1211e553d | |
parent | Merge pull request #9225 (diff) | |
parent | depends: add riscv64 linux build tag (diff) | |
download | monero-8e61ddb413c0f1a8931f7d7bd3f998063d1fc141.tar.xz |
Merge pull request #9228
c40d8b2 depends: add riscv64 linux build tag (selsta)
-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() |