mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 03:14:35 +00:00
c37fb4cf62
* Update cmakepreset.json to use clang with ninja by default * Update cmakepreset.json to add clang and ninja based configs * Updates to build.md file * Make updates to rename preset targets * Update with .cmake file * Remove additional whitespaces * Add .cmake file for x64-windows-llvm * Update docs/build.md * Update docs/build.md --------- Co-authored-by: Max Krasnyansky <max.krasnyansky@gmail.com>
12 lines
270 B
CMake
12 lines
270 B
CMake
set( CMAKE_SYSTEM_NAME Windows )
|
|
set( CMAKE_SYSTEM_PROCESSOR x86_64 )
|
|
|
|
set( CMAKE_C_COMPILER clang )
|
|
set( CMAKE_CXX_COMPILER clang++ )
|
|
|
|
set( arch_c_flags "-march=native" )
|
|
|
|
set( CMAKE_C_FLAGS_INIT "${arch_c_flags}" )
|
|
set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags}" )
|
|
|