checkasm: add loongarch GAS file to checkasm_asm_sources

This is not an object so putting it in the objects variable seems wrong
and would also break using gaspp for that file.
This commit is contained in:
Marvin Scholz
2024-11-16 14:51:35 +01:00
parent f772f3e678
commit c8fdaa8611
+1 -1
View File
@@ -74,7 +74,7 @@ if is_asm_enabled
elif host_machine.cpu_family().startswith('x86') elif host_machine.cpu_family().startswith('x86')
checkasm_asm_objs += nasm_gen.process(files('checkasm/x86/checkasm.asm')) checkasm_asm_objs += nasm_gen.process(files('checkasm/x86/checkasm.asm'))
elif host_machine.cpu_family().startswith('loongarch') elif host_machine.cpu_family().startswith('loongarch')
checkasm_asm_objs += files('checkasm/loongarch/checkasm.S') checkasm_asm_sources += files('checkasm/loongarch/checkasm.S')
endif endif
if use_gaspp if use_gaspp