From e4a5da8d96491d4eb02a0e3b9e341b7a21d70bc6 Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Sat, 14 Mar 2026 06:21:58 +0000 Subject: [PATCH] studio: combine llama.cpp build targets in setup.ps1 Build llama-server and llama-quantize in a single cmake --build invocation on Windows, matching the same optimization done in setup.sh. This allows MSBuild to better parallelize the two targets. The Visual Studio generator is kept as-is (not switching to Ninja on Windows since VS generator is the standard approach and interacts with MSBuild). --- studio/setup.ps1 | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/studio/setup.ps1 b/studio/setup.ps1 index bf0ba754f0..7a15a893af 100644 --- a/studio/setup.ps1 +++ b/studio/setup.ps1 @@ -898,30 +898,20 @@ if (Test-Path $LlamaServerBin) { } } - # -- Step C: Build llama-server -- + # -- Step C: Build llama-server + llama-quantize -- $NumCpu = [Environment]::ProcessorCount if ($NumCpu -lt 1) { $NumCpu = 4 } if ($BuildOk) { Write-Host "" - Write-Host "--- cmake build (llama-server) ---" -ForegroundColor Cyan + Write-Host "--- cmake build (llama-server + llama-quantize) ---" -ForegroundColor Cyan Write-Host " Parallel jobs: $NumCpu" -ForegroundColor Gray Write-Host "" - cmake --build $BuildDir --config Release --target llama-server -j $NumCpu + cmake --build $BuildDir --config Release --target llama-server llama-quantize -j $NumCpu if ($LASTEXITCODE -ne 0) { $BuildOk = $false - $FailedStep = "cmake build (llama-server)" - } - } - - # -- Step D: Build llama-quantize (optional, best-effort) -- - if ($BuildOk) { - Write-Host "" - Write-Host "--- cmake build (llama-quantize) ---" -ForegroundColor Cyan - cmake --build $BuildDir --config Release --target llama-quantize -j $NumCpu - if ($LASTEXITCODE -ne 0) { - Write-Host " [WARN] llama-quantize build failed (GGUF export may be unavailable)" -ForegroundColor Yellow + $FailedStep = "cmake build (llama-server + llama-quantize)" } }