CoolFace
Modelpublic

Felipe97/llama-cpp-compiled

sourceHugging Faceupdated 4d agoView on Hugging Face
0likes1.1kdownloads
arm64-linux-clang.cmake18 linesDownload Raw Back to cmake
1set( CMAKE_SYSTEM_NAME Linux )2set( CMAKE_SYSTEM_PROCESSOR arm64 )3 4set( target aarch64-linux-gnu )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.7-a -fvectorize -ffp-model=fast -fno-finite-math-only" )13set( warn_c_flags "-Wno-format -Wno-unused-variable -Wno-unused-function -Wno-gnu-zero-variadic-macro-arguments" )14 15set( CMAKE_C_FLAGS_INIT   "${arch_c_flags} ${warn_c_flags}" )16set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags} ${warn_c_flags}" )17 18