| ... | @@ -20,7 +20,7 @@ running `zig std`, which will open a browser tab. | ... | @@ -20,7 +20,7 @@ running `zig std`, which will open a browser tab. |
| 20 | ## Installation | 20 | ## Installation |
| 21 | | 21 | |
| 22 | * [download a pre-built binary](https://ziglang.org/download/) | 22 | * [download a pre-built binary](https://ziglang.org/download/) |
| 23 | * [install from a package manager](https://github.com/ziglang/zig/wiki/Install-Zig-from-a-Package-Manager) | 23 | * [install from a package manager](https://ziglang.org/learn/getting-started/#managers) |
| 24 | * [bootstrap zig for any target](https://github.com/ziglang/zig-bootstrap) | 24 | * [bootstrap zig for any target](https://github.com/ziglang/zig-bootstrap) |
| 25 | | 25 | |
| 26 | A Zig installation is composed of two things: | 26 | A Zig installation is composed of two things: |
| ... | @@ -204,10 +204,14 @@ You now have the `zig.exe` binary at `stage3\bin\zig.exe`. | ... | @@ -204,10 +204,14 @@ You now have the `zig.exe` binary at `stage3\bin\zig.exe`. |
| 204 | This one has the benefit that changes to the language or build system won't | 204 | This one has the benefit that changes to the language or build system won't |
| 205 | break your dev kit. This option can be used to upgrade a dev kit. | 205 | break your dev kit. This option can be used to upgrade a dev kit. |
| 206 | | 206 | |
| 207 | First, [build LLVM, LLD, and Clang from source using CMake and Microsoft Visual Studio](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#windows). Or, skip this step using a pre-built binary tarball, which unfortunately is not provided here. | 207 | First, build LLVM, LLD, and Clang from source using CMake and Microsoft Visual |
| | 208 | Studio (see below for detailed instructions). |
| 208 | | 209 | |
| 209 | Install [Build Tools for Visual Studio 2019](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019). Be sure to select "Desktop development with C++" when prompted. | 210 | Install [Build Tools for Visual Studio |
| 210 | * You must additionally check the optional component labeled **C++ ATL for v142 build tools**. | 211 | 2019](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019). |
| | 212 | Be sure to select "Desktop development with C++" when prompted. |
| | 213 | * You must additionally check the optional component labeled **C++ ATL for |
| | 214 | v142 build tools**. |
| 211 | | 215 | |
| 212 | Install [CMake](http://cmake.org). | 216 | Install [CMake](http://cmake.org). |
| 213 | | 217 | |