diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2025-07-23 17:02:23 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-23 11:02:23 +0200 |
| commit | bf429a1dcfdaa960857f03a6f85e0dbf83e8b1e4 (patch) | |
| tree | 3c32ddd5a9314a393fe24b2fb275e1f45941a704 /src/tools/env.c | |
| parent | e1c1303d285287a9d27af0ea9a82c0673a8e744b (diff) | |
| download | box64-bf429a1dcfdaa960857f03a6f85e0dbf83e8b1e4.tar.gz box64-bf429a1dcfdaa960857f03a6f85e0dbf83e8b1e4.zip | |
[RV64_DYNAREC][LA64_DYNAREC] Simplified defered flags handling and limited case where UpdateFlags is actualy called (#2844)
Diffstat (limited to 'src/tools/env.c')
| -rw-r--r-- | src/tools/env.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/env.c b/src/tools/env.c index 877a9fc8..5b4c4ee3 100644 --- a/src/tools/env.c +++ b/src/tools/env.c @@ -809,9 +809,9 @@ done: #ifdef ARM64 #define ARCH_VERSION SET_VERSION(0, 0, 3) #elif defined(RV64) -#define ARCH_VERSION SET_VERSION(0, 0, 1) +#define ARCH_VERSION SET_VERSION(0, 0, 2) #elif defined(LA64) -#define ARCH_VERSION SET_VERSION(0, 0, 1) +#define ARCH_VERSION SET_VERSION(0, 0, 2) #else #error meh! #endif |