Common: Add CPU feature detection for ARM64

This commit is contained in:
SachinVin 2022-04-04 23:43:39 +05:30
parent f1c2f63aa1
commit 0af8406e44
3 changed files with 149 additions and 0 deletions

View file

@ -125,6 +125,12 @@ if(ARCHITECTURE_x86_64)
x64/xbyak_abi.h
x64/xbyak_util.h
)
elseif(ARCHITECTURE_ARM64)
target_sources(common
PRIVATE
aarch64/cpu_detect.cpp
aarch64/cpu_detect.h
)
endif()
create_target_directory_groups(common)