Browse Source
Merge pull request #1066 from lioncash/aarch64
CMakeLists: Add architecture detection for AArch64
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
CMakeLists.txt
|
|
|
@ -66,10 +66,12 @@ if (NOT ENABLE_GENERIC) |
|
|
|
detect_architecture("_M_AMD64" x86_64) |
|
|
|
detect_architecture("_M_IX86" x86) |
|
|
|
detect_architecture("_M_ARM" ARM) |
|
|
|
detect_architecture("_M_ARM64" ARM64) |
|
|
|
else() |
|
|
|
detect_architecture("__x86_64__" x86_64) |
|
|
|
detect_architecture("__i386__" x86) |
|
|
|
detect_architecture("__arm__" ARM) |
|
|
|
detect_architecture("__aarch64__" ARM64) |
|
|
|
endif() |
|
|
|
endif() |
|
|
|
|
|
|
|
|