Skip to content

Commit

Permalink
Update target_arch_detect.cpp
Browse files Browse the repository at this point in the history
adding detection for ARM to cmake build
  • Loading branch information
NikolajBjorner committed Apr 5, 2022
1 parent a5d588c commit bd70c79
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmake/target_arch_detect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bd70c79

Please sign in to comment.