summaryrefslogtreecommitdiff
path: root/standalone/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'standalone/platform.h')
-rw-r--r--standalone/platform.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/standalone/platform.h b/standalone/platform.h
index db4217ddab9..aae3b9ab876 100644
--- a/standalone/platform.h
+++ b/standalone/platform.h
@@ -37,6 +37,12 @@
#define SCUDO_TRUSTY 0
#endif
+#if defined(__riscv) && (__riscv_xlen == 64)
+#define SCUDO_RISCV64 1
+#else
+#define SCUDO_RISCV64 0
+#endif
+
#if defined(__LP64__)
#define SCUDO_WORDSIZE 64U
#else