mirror of
https://github.com/matrix-construct/construct
synced 2025-03-31 23:11:33 +02:00
configure: Add conditionals for hardware platform / host_cpu.
This commit is contained in:
parent
50481585b0
commit
715f21564e
1 changed files with 10 additions and 0 deletions
10
configure.ac
10
configure.ac
|
@ -83,6 +83,16 @@ dnl
|
|||
dnl Platform
|
||||
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 Compiler brand
|
||||
dnl
|
||||
|
|
Loading…
Add table
Reference in a new issue