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
23
23
24
24
1 . ** Install Chocolatey** (Windows package manager) from an ** elevated** (administrator) PowerShell session:
25
25
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
+ ```
32
32
33
- ::: tip
34
- If PowerShell requests script execution permissions, enable them with:
33
+ :::caution
34
+ If PowerShell requests script execution permissions, enable them with:
35
35
36
- ``` powershell
37
- Set-ExecutionPolicy AllSigned
38
- ```
36
+ ```powershell
37
+ Set-ExecutionPolicy AllSigned
38
+ ```
39
39
40
- :::
40
+ :::
41
41
42
42
2. Install LLVM (Clang) and Ninja
43
43
44
- ``` powershell
45
- choco install llvm
46
- choco install ninja
47
- ```
44
+ ```powershell
45
+ choco install llvm
46
+ choco install ninja
47
+ ```
48
48
49
49
### 3. Misc Tools
50
50
You can’t perform that action at this time.
0 commit comments