Skip to content

Commit 8d1b894

Browse files
authored
Update LLVM 21.1.0 -> 21.1.8 (#473)
21.1.0 has issues in StdLibExtras.h switchOn, but it looks like bun is compiling successfully with 21.1.8.
1 parent 8497c4c commit 8d1b894

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

buildbot-worker/BuildbotWorker/Run-BuildbotWorker.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,7 @@ Make sure the amount of disk space is set in the storage-opts setting of the dae
7878
Write-Host 'Initializing Visual Studio environment';
7979
Initialize-VSEnvironment -Architecture 'amd64' -Path (Get-VSBuildTools2022VCVarsAllPath);
8080

81-
if ($env:COMPILER -eq 'Clang') {
82-
$compilerExe = 'clang-cl.exe';
83-
} else {
84-
$compilerExe = 'cl.exe';
85-
}
86-
81+
$compilerExe = 'clang-cl.exe';
8782
$compilerPath = (Get-Command $compilerExe).Path;
8883

8984
Write-Host ('Found compiler at {0}' -f $compilerPath);

msbuild-2022/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN Install-VSBuildTools2022 -InstallationPath C:\MSVS -Workloads `
2121
# Install LLVM for Clang tooling support
2222
#--------------------------------------------------------------------
2323

24-
ENV LLVM_VERSION 21.1.0
24+
ENV LLVM_VERSION 21.1.8
2525

2626
RUN Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;
2727

0 commit comments

Comments
 (0)