meson: s/arm_tsd/armv7_tsd/

This matches configure.ac and also allows Meson to configure on ARMv7.
Otherwise it would fail with

    ERROR: Problem encountered: No matching ASM file for armv7_tsd
This commit is contained in:
Matt Turner 2019-12-06 12:06:52 -05:00
parent 05e762ba74
commit 01c0eb4ec1

View file

@ -39,7 +39,7 @@ if gl_dispatch_type == 'pure_c'
_entry_files += 'entry_pure_c.c'
else
_entry_files += 'entry_common.c'
if gl_dispatch_type != 'arm_tsd'
if gl_dispatch_type != 'armv7_tsd'
_entry_files += 'entry_simple_asm.c'
endif
if gl_dispatch_type == 'x86_tls'
@ -50,7 +50,7 @@ else
_entry_files += 'entry_x86_64_tls.c'
elif gl_dispatch_type == 'x86_64_tsd'
_entry_files += 'entry_x86_64_tsd.c'
elif gl_dispatch_type == 'arm_tsd'
elif gl_dispatch_type == 'armv7_tsd'
_entry_files += 'entry_armv7_tsd.c'
elif gl_dispatch_type == 'aarch64_tsd'
_entry_files += 'entry_aarch64_tsd.c'