Skip to content

Commit

Permalink
Force interpreter by default on arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
exverge-0 committed Jul 11, 2024
1 parent c7874c1 commit 07c9004
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/config/LaunchSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ class LaunchSettings

inline static bool s_enable_gdbstub = false;
inline static bool s_nsight_mode = false;

#ifdef __aarch64__
inline static bool s_force_interpreter = true;
#else
inline static bool s_force_interpreter = false;
#endif

inline static std::optional<uint32> s_persistent_id{};

Expand Down

0 comments on commit 07c9004

Please sign in to comment.