Enable building on riscv64 (#186)

This commit is contained in:
April Kolwey
2026-06-27 11:50:08 -05:00
committed by GitHub
parent a596b32823
commit a3c7839d28
+1 -1
View File
@@ -68,7 +68,7 @@ QWORD ConfirmationID::residue_sub(QWORD x, QWORD y)
return z;
}
#if defined(__x86_64__) || defined(_M_AMD64) || defined(__aarch64__) || (defined(__arm64__) && defined(__APPLE__))
#if defined(__x86_64__) || defined(_M_AMD64) || defined(__aarch64__) || (defined(__arm64__) && defined(__APPLE__)) || (defined(__riscv) && (__SIZEOF_POINTER__ == 8))
#ifdef __GNUC__
inline QWORD ConfirmationID::__umul128(QWORD a, QWORD b, QWORD* hi)
{