0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-08 21:18:57 +02:00

configure: Add conditionals for hardware platform / host_cpu.

This commit is contained in:
Jason Volk 2023-04-08 13:29:49 -07:00
parent 50481585b0
commit 715f21564e

View file

@ -83,6 +83,16 @@ dnl
dnl Platform dnl Platform
dnl dnl
dnl
dnl Hardwares
dnl
AM_CONDITIONAL([AMD64], [[[[ $host_cpu = *x86_64* ]]]])
AM_CONDITIONAL([X86_64], [[[[ $host_cpu = *x86_64* ]]]])
AM_CONDITIONAL([ARM64], [[[[ $host_cpu = *aarch64* ]]]])
AM_CONDITIONAL([AARCH64], [[[[ $host_cpu = *aarch64* ]]]])
dnl dnl
dnl Compiler brand dnl Compiler brand
dnl dnl