1set( CMAKE_SYSTEM_NAME Darwin )
 2set( CMAKE_SYSTEM_PROCESSOR arm64 )
 3
 4set( target arm64-apple-darwin-macho )
 5
 6set( CMAKE_C_COMPILER    clang )
 7set( CMAKE_CXX_COMPILER  clang++ )
 8
 9set( CMAKE_C_COMPILER_TARGET   ${target} )
10set( CMAKE_CXX_COMPILER_TARGET ${target} )
11
12set( arch_c_flags "-march=armv8.4-a -fvectorize -ffp-model=fast -fno-finite-math-only" )
13set( warn_c_flags "-Wno-format -Wno-unused-variable -Wno-unused-function" )
14
15set( CMAKE_C_FLAGS_INIT   "${arch_c_flags} ${warn_c_flags}" )
16set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags} ${warn_c_flags}" )