From 302fbd74524c9ce0104a0a02df2fab212e45abcb Mon Sep 17 00:00:00 2001 From: Volker Christian Date: Mon, 12 Aug 2024 15:29:40 +0200 Subject: [PATCH] loongarch64, x86: Fix compile issue by not using trampoline.c but startcontext.S for those two architectures also. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8ff725f..ae96e5d 100644 --- a/meson.build +++ b/meson.build @@ -40,7 +40,7 @@ if cpu in ['ppc', 'ppc64'] 'arch' / cpu / 'retfromsyscall.c' ] endif -if cpu not in ['mips', 'mips64', 'ppc', 'ppc64', 's390x'] +if cpu not in ['loongarch64', 'mips', 'mips64', 'ppc', 'ppc64', 's390x', 'x86'] project_source_files += [ 'arch' / cpu / 'trampoline.c' ]