Skip to content

Commit a6d30f5

Browse files
committed
fix: added clang to scripts/choco-install.ps1
1 parent 63faaa3 commit a6d30f5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/choco-install.ps1

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$rust\$rust.1.68.0
3737
Save-ChocoPackage -PackageName $rust
3838
}
3939

40+
# Install llvm v16.0.3 (will use cache if exists)
41+
$llvm = "llvm"
42+
choco install "$llvm" --version="16.0.3" --require-checksums -y
43+
# Internalise rust to cache if doesn't exist
44+
if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$llvm\$llvm.16.0.3.nupkg" -PathType Leaf) ) {
45+
Save-ChocoPackage -PackageName $llvm
46+
}
47+
4048
# Install nasm v2.16.01.20221231 (will use cache if exists)
4149
$nasm = "nasm"
4250
choco install "$nasm" --version="2.16.01.20221231" --require-checksums -y

0 commit comments

Comments
 (0)