From b1001037b4855e32b06450dff55f1ddf0b432d6a Mon Sep 17 00:00:00 2001 From: Luke Craig Date: Fri, 8 Sep 2023 12:32:20 -0400 Subject: [PATCH] loadinfo fix (#1349) --- panda/plugins/syscalls2/syscalls2_info.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panda/plugins/syscalls2/syscalls2_info.c b/panda/plugins/syscalls2/syscalls2_info.c index 0d154904408..28f58fc4a0e 100644 --- a/panda/plugins/syscalls2/syscalls2_info.c +++ b/panda/plugins/syscalls2/syscalls2_info.c @@ -18,6 +18,8 @@ int load_syscall_info(void) { const gchar *arch = "arm"; #elif defined(TARGET_ARM) &&defined(TARGET_AARCH64) const gchar *arch = "arm64"; +#elif defined(TARGET_MIPS) && defined(TARGET_MIPS64) + const gchar *arch = "mips64"; #elif defined(TARGET_MIPS) const gchar *arch = "mips"; #elif defined(TARGET_X86_64)