1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

meson: improve host cpu detection

See gegl@6bcf95fd0f32cf5e8b1ddbe17b14d9ad049bded8.
This commit is contained in:
Ell
2019-10-28 08:00:28 +02:00
parent c8bf85cc54
commit 0ce7c25dd4

View File

@@ -98,22 +98,26 @@ linker_args = []
################################################################################
# Host system detection
cpu = host_machine.cpu().to_lower()
host_cpu_family = host_machine.cpu_family()
message('Host machine cpu family: ' + host_cpu_family)
arch_x86_64 = (cpu == 'x86_64')
arch_x86 = (cpu.startswith('i') and cpu.endswith('86')) or arch_x86_64
arch_ppc64 = (cpu == 'ppc64' or cpu == 'powerpc64')
arch_ppc = (cpu == 'ppc' or cpu == 'powerpc') or arch_ppc64
if not (arch_x86 or arch_ppc)
error('Unknown host architecture')
host_cpu_family = host_machine.cpu_family()
if host_cpu_family == 'x86'
have_x86 = true
conf.set10('ARCH_X86', true)
elif host_cpu_family == 'x86_64'
have_x86 = true
conf.set10('ARCH_X86', true)
conf.set10('ARCH_X86_64', true)
elif host_cpu_family == 'ppc'
have_ppc = true
conf.set10('ARCH_PPC', true)
elif host_cpu_family == 'ppc64'
have_ppc = true
conf.set10('ARCH_PPC', true)
conf.set10('ARCH_PPC64', true)
endif
conf.set10('ARCH_X86', arch_x86)
conf.set10('ARCH_X86_64', arch_x86_64)
conf.set10('ARCH_PPC', arch_ppc)
conf.set10('ARCH_PPC64', arch_ppc64)
host_os = host_machine.system().to_lower()
message('Host os: ' + host_os)