loongarch64, x86: Fix compile issue by not using trampoline.c but startcontext.S for those two architectures also.

master
Volker Christian 2024-08-12 15:29:40 +02:00 committed by Ariadne Conill
parent d64402737b
commit 302fbd7452
1 changed files with 1 additions and 1 deletions

View File

@ -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'
]