This repository was archived by the owner on Aug 2, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -23,28 +23,28 @@ We’ll use the **Visual Studio compiler** on Windows (instead of Clang) due to
2323
24241 . ** Install Chocolatey** (Windows package manager) from an ** elevated** (administrator) PowerShell session:
2525
26- ``` powershell
27- Set-ExecutionPolicy Bypass -Scope Process -Force; `
28- [System.Net.ServicePointManager]::SecurityProtocol = `
29- [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; `
30- iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
31- ```
26+ ``` powershell
27+ Set-ExecutionPolicy Bypass -Scope Process -Force; `
28+ [System.Net.ServicePointManager]::SecurityProtocol = `
29+ [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; `
30+ iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
31+ ```
3232
33- ::: tip
34- If PowerShell requests script execution permissions, enable them with:
33+ :::caution
34+ If PowerShell requests script execution permissions, enable them with:
3535
36- ``` powershell
37- Set-ExecutionPolicy AllSigned
38- ```
36+ ```powershell
37+ Set-ExecutionPolicy AllSigned
38+ ```
3939
40- :::
40+ :::
4141
42422. Install LLVM (Clang) and Ninja
4343
44- ``` powershell
45- choco install llvm
46- choco install ninja
47- ```
44+ ```powershell
45+ choco install llvm
46+ choco install ninja
47+ ```
4848
4949### 3. Misc Tools
5050
You can’t perform that action at this time.
0 commit comments