Skip to content

Commit ecf1056

Browse files
committed
Force interpreter by default on arm64
1 parent c7874c1 commit ecf1056

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: src/config/LaunchSettings.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,11 @@ class LaunchSettings
3939

4040
inline static bool s_enable_gdbstub = false;
4141
inline static bool s_nsight_mode = false;
42-
42+
#ifdef __aarch64__
43+
inline static bool s_force_interpreter = true;
44+
#else
4345
inline static bool s_force_interpreter = false;
46+
#endif
4447

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

0 commit comments

Comments
 (0)