3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

Update target_arch_detect.cpp

adding detection for ARM to cmake build
This commit is contained in:
Nikolaj Bjorner 2022-04-05 15:53:53 +02:00
parent a5d588ce09
commit bd70c79b25

View file

@ -5,6 +5,8 @@
#error CMAKE_TARGET_ARCH_i686
#elif defined(__x86_64__) || defined(_M_X64)
#error CMAKE_TARGET_ARCH_x86_64
#elif defined(__ARM_ARCH)
#error CMAKE_TARGET_ARCH_arm
#else
#error CMAKE_TARGET_ARCH_unknown
#endif