We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb87da commit 37db6deCopy full SHA for 37db6de
2 files changed
.github/workflows/build-cli.yml
@@ -157,6 +157,7 @@ jobs:
157
shell: pwsh
158
env:
159
CUDA_COMPUTE_CAP: ${{ matrix.variant == 'cuda' && '80' || '' }}
160
+ LLAMA_STATIC_CRT: ${{ matrix.variant == 'cuda' && '1' || '' }}
161
run: |
162
Write-Output "Building Windows CLI executable..."
163
if ("${{ matrix.variant }}" -eq "cuda") {
.github/workflows/bundle-desktop-windows.yml
@@ -112,6 +112,7 @@ jobs:
112
113
114
CUDA_COMPUTE_CAP: ${{ inputs.windows_variant == 'cuda' && '80' || '' }}
115
+ LLAMA_STATIC_CRT: ${{ inputs.windows_variant == 'cuda' && '1' || '' }}
116
117
Write-Output "Building Windows executable..."
118
if ("${{ inputs.windows_variant }}" -eq "cuda") {
0 commit comments