freebsd-ports/devel/tup/files/patch-src_tup_platform.c
Alexey Dokuchaev e6b4d19773 devel/tup: new port had been added (file-based build system)
It inputs a list of file changes and a directed acyclic graph (DAG),
then processes the DAG to execute the appropriate commands required
to update dependent files.

WWW: https://gittup.org/tup/
2022-06-01 02:09:00 +00:00

11 lines
346 B
C

--- src/tup/platform.c.orig 2021-05-14 16:20:52 UTC
+++ src/tup/platform.c
@@ -58,6 +58,8 @@ const char *tup_arch = "arm64";
const char *tup_arch = "arm";
#elif __aarch64__
const char *tup_arch = "arm64";
+#elif __riscv
+const char *tup_arch = "riscv";
#else
#error Unsupported cpu architecture. Please add support in tup/platform.c
#endif