Skip to content

Commit

Permalink
Undefine JIT for AARCH64 as well, for now
Browse files Browse the repository at this point in the history
It's not ready for JIT in this branch
  • Loading branch information
midwan committed Nov 13, 2023
1 parent 0c02e00 commit 6e24c57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/osdep/sysconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
#define FILESYS /* filesys emulation */
#define UAE_FILESYS_THREADS
#define AUTOCONFIG /* autoconfig support, fast ram, harddrives etc.. */
#if !defined (CPU_AMD64) && !defined (__x86_64__) && !defined(__riscv) && !defined (__MACH__)
#if !defined(CPU_AARCH64) && !defined (CPU_AMD64) && !defined (__x86_64__) && !defined(__riscv) && !defined (__MACH__)
#define JIT /* JIT compiler support */
#endif
#if defined(ARMV6T2) || defined(CPU_AARCH64)
#define USE_JIT_FPU
#endif
//#if defined(ARMV6T2) || defined(CPU_AARCH64)
//#define USE_JIT_FPU
//#endif
//#define NOFLAGS_SUPPORT_GENCPU
#define NOFLAGS_SUPPORT_GENCOMP
//#define HAVE_GET_WORD_UNSWAPPED
Expand Down
4 changes: 2 additions & 2 deletions src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)

#define AMIBERRYVERSION _T("Amiberry v6.0 preview (2023-11-08)")
#define AMIBERRYDATE MAKEBD(2023, 11, 8)
#define AMIBERRYVERSION _T("Amiberry v6.0 preview (2023-11-13)")
#define AMIBERRYDATE MAKEBD(2023, 11, 13)

#define IHF_WINDOWHIDDEN 6

Expand Down

0 comments on commit 6e24c57

Please sign in to comment.