diff options
Diffstat (limited to 'src/tools/env.c')
| -rw-r--r-- | src/tools/env.c | 6 |
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 |