23 lines
989 B
Diff
23 lines
989 B
Diff
From 3cf93a58ad15d6d8a124dadca8fca3dbb2ea357c Mon Sep 17 00:00:00 2001
|
|
From: Eric Long <i@hack3r.moe>
|
|
Date: Sat, 23 Sep 2023 22:43:11 +0800
|
|
Subject: [PATCH] Fix stbsp__uintptr on riscv64
|
|
|
|
---
|
|
stb_sprintf.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/stb_sprintf.h b/stb_sprintf.h
|
|
index ca432a6bca..2add83e2a5 100644
|
|
--- a/stb_sprintf.h
|
|
+++ b/stb_sprintf.h
|
|
@@ -230,7 +230,7 @@ STBSP__PUBLICDEC void STB_SPRINTF_DECORATE(set_separators)(char comma, char peri
|
|
#define stbsp__uint16 unsigned short
|
|
|
|
#ifndef stbsp__uintptr
|
|
-#if defined(__ppc64__) || defined(__powerpc64__) || defined(__aarch64__) || defined(_M_X64) || defined(__x86_64__) || defined(__x86_64) || defined(__s390x__)
|
|
+#if defined(__ppc64__) || defined(__powerpc64__) || defined(__aarch64__) || defined(_M_X64) || defined(__x86_64__) || defined(__x86_64) || defined(__s390x__) || defined(__riscv) && __riscv_xlen == 64
|
|
#define stbsp__uintptr stbsp__uint64
|
|
#else
|
|
#define stbsp__uintptr stbsp__uint32
|