Skip to content

Commit

Permalink
chore: update llvm version in install-clang-format.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
fxliang committed Sep 3, 2024
1 parent 59dc181 commit 9d94b21
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions install-clang-format.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
rem 64 bit system
rem powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/LLVM-17.0.6-win64.exe', 'LLVM-17.0.6-win64.exe')"
rem LLVM-17.0.6-win64.exe /S
rem powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.6/LLVM-18.1.6-win64.exe', 'LLVM-18.1.6-win64.exe')"
rem LLVM-18.1.6-win64.exe /S
rem or maybe
rem output/7z.exe e LLVM-17.0.6-win64.exe bin/clang-format.exe -o.
rem rm LLVM-17.0.6-win64.exe
rem output/7z.exe e LLVM-18.1.6-win64.exe bin/clang-format.exe -o.
rem rm LLVM-18.1.6-win64.exe
) else (
rem 32 bit system
rem powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.6/LLVM-17.0.6-win32.exe', 'LLVM-17.0.6-win32.exe')"
rem LLVM-17.0.6-win32.exe /S
rem powershell -Command "(New-Object Net.WebClient).DownloadFile('https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.6/LLVM-18.1.6-win32.exe', 'LLVM-18.1.6-win32.exe')"
rem LLVM-18.1.6-win32.exe /S
rem or maybe
rem output/7z.exe e LLVM-17.0.6-win32.exe bin/clang-format.exe -o.
rem rm LLVM-17.0.6-win32.exe
rem output/7z.exe e LLVM-18.1.6-win32.exe bin/clang-format.exe -o.
rem rm LLVM-18.1.6-win32.exe
)
pause

0 comments on commit 9d94b21

Please sign in to comment.