about summary refs log tree commit diff stats
path: root/src/tools/env.c
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-08-18 18:41:47 +0800
committerGitHub <noreply@github.com>2025-08-18 12:41:47 +0200
commit0a53d2223aaac6a460074cb2fea649ef526d7d20 (patch)
tree43739fa13b811f69ccb863cc89d861d929b2b256 /src/tools/env.c
parentfe2930cbe3462ae39271781a30c68f2185fc8f3a (diff)
downloadbox64-0a53d2223aaac6a460074cb2fea649ef526d7d20.tar.gz
box64-0a53d2223aaac6a460074cb2fea649ef526d7d20.zip
[DYNAREC] Bump ARCH_VERSION (#2947)
Diffstat (limited to 'src/tools/env.c')
-rw-r--r--src/tools/env.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/env.c b/src/tools/env.c
index 5b4c4ee3..3fc1babd 100644
--- a/src/tools/env.c
+++ b/src/tools/env.c
@@ -807,11 +807,11 @@ done:
 #define HEADER_SIGN "DynaCache"
 #define SET_VERSION(MAJ, MIN, REV) (((MAJ)<<24)|((MIN)<<16)|(REV))
 #ifdef ARM64
-#define ARCH_VERSION SET_VERSION(0, 0, 3)
+#define ARCH_VERSION SET_VERSION(0, 0, 4)
 #elif defined(RV64)
-#define ARCH_VERSION SET_VERSION(0, 0, 2)
+#define ARCH_VERSION SET_VERSION(0, 0, 3)
 #elif defined(LA64)
-#define ARCH_VERSION SET_VERSION(0, 0, 2)
+#define ARCH_VERSION SET_VERSION(0, 0, 3)
 #else
 #error meh!
 #endif