Skip to content

Commit c37fb4c

Browse files
Changes to CMakePresets.json to add ninja clang target on windows (#10668)
* 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 <[email protected]>
1 parent 3d98b4c commit c37fb4c

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

CMakePresets.json

+12
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@
3131
{ "name": "sycl_f16", "hidden": true, "cacheVariables": { "GGML_SYCL_F16": "ON" } },
3232
{ "name": "vulkan", "hidden": true, "cacheVariables": { "GGML_VULKAN": "ON" } },
3333

34+
{
35+
"name": "x64-windows-llvm", "hidden": true,
36+
"cacheVariables": {
37+
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/cmake/x64-windows-llvm.cmake"
38+
}
39+
},
40+
3441
{
3542
"name": "arm64-windows-msvc", "hidden": true,
3643
"architecture": { "value": "arm64", "strategy": "external" },
@@ -70,6 +77,11 @@
7077
{ "name": "arm64-windows-msvc-release", "inherits": [ "base", "arm64-windows-msvc", "reldbg" ] },
7178
{ "name": "arm64-windows-msvc+static-release", "inherits": [ "base", "arm64-windows-msvc", "reldbg", "static" ] },
7279

80+
{ "name": "x64-windows-llvm-debug", "inherits": [ "base", "x64-windows-llvm", "debug" ] },
81+
{ "name": "x64-windows-llvm-release", "inherits": [ "base", "x64-windows-llvm", "release" ] },
82+
{ "name": "x64-windows-llvm-reldbg", "inherits": [ "base", "x64-windows-llvm", "reldbg" ] },
83+
{ "name": "x64-windows-llvm+static-release", "inherits": [ "base", "x64-windows-llvm", "reldbg", "static" ] },
84+
7385
{ "name": "x64-windows-msvc-debug", "inherits": [ "base", "debug" ] },
7486
{ "name": "x64-windows-msvc-release", "inherits": [ "base", "reldbg" ] },
7587
{ "name": "x64-windows-msvc+static-release", "inherits": [ "base", "reldbg", "static" ] },

cmake/x64-windows-llvm.cmake

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
set( CMAKE_SYSTEM_NAME Windows )
2+
set( CMAKE_SYSTEM_PROCESSOR x86_64 )
3+
4+
set( CMAKE_C_COMPILER clang )
5+
set( CMAKE_CXX_COMPILER clang++ )
6+
7+
set( arch_c_flags "-march=native" )
8+
9+
set( CMAKE_C_FLAGS_INIT "${arch_c_flags}" )
10+
set( CMAKE_CXX_FLAGS_INIT "${arch_c_flags}" )
11+

docs/build.md

+7
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ cmake --build build --config Release
5757
```
5858
Building for arm64 can also be done with the MSVC compiler with the build-arm64-windows-MSVC preset, or the standard CMake build instructions. However, note that the MSVC compiler does not support inline ARM assembly code, used e.g. for the accelerated Q4_0_N_M CPU kernels.
5959
60+
For building with ninja generator and clang compiler as default:
61+
-set path:set LIB=C:\Program Files (x86)\Windows Kits\10\Lib\10.0.22621.0\um\x64;C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\lib\x64\uwp;C:\Program Files (x86)\Windows Kits\10\Lib\10.0.22621.0\ucrt\x64
62+
```bash
63+
cmake --preset x64-windows-llvm-release
64+
cmake --build build-x64-windows-llvm-release
65+
```
66+
6067
## BLAS Build
6168
6269
Building the program with BLAS support may lead to some performance improvements in prompt processing using batch sizes higher than 32 (the default is 512). Using BLAS doesn't affect the generation performance. There are currently several different BLAS implementations available for build and use:

0 commit comments

Comments
 (0)