You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
509 B
11 lines
509 B
# Copyright The OpenTelemetry Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
$llvmVersion = "10.0.0" |
|
Write-Host "Installing LLVM $llvmVersion ..." -ForegroundColor Cyan |
|
Write-Host "Downloading..." |
|
$exePath = "$env:temp\LLVM-$llvmVersion-win32.exe" |
|
(New-Object Net.WebClient).DownloadFile("https://github.com/llvm/llvm-project/releases/download/llvmorg-$llvmVersion/LLVM-$llvmVersion-win32.exe", $exePath) |
|
Write-Host "Installing..." |
|
cmd /c start /wait $exePath /S |
|
Write-Host "Installed" -ForegroundColor Green
|
|
|