authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-11-24 06:39:28-08:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-11-24 06:39:28-08:00
log66fe584eade01f5f71e565ba2fbf036436c4bf5a
tree3940b4b9ec9a7773e84da36396ed8fdd2470b977
parentccc5e581a862ba3cf635da847d279a5cac552791

README: update some links


1 files changed, 8 insertions(+), 4 deletions(-)

README.md+8-4
...@@ -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## Installation20## Installation
2121
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)
2525
26A Zig installation is composed of two things:26A 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`.
204This one has the benefit that changes to the language or build system won't204This one has the benefit that changes to the language or build system won't
205break your dev kit. This option can be used to upgrade a dev kit.205break your dev kit. This option can be used to upgrade a dev kit.
206206
207First, [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.207First, build LLVM, LLD, and Clang from source using CMake and Microsoft Visual
208Studio (see below for detailed instructions).
208209
209Install [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.210Install [Build Tools for Visual Studio
210 * You must additionally check the optional component labeled **C++ ATL for v142 build tools**.2112019](https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2019).
212Be 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**.
211215
212Install [CMake](http://cmake.org).216Install [CMake](http://cmake.org).
213217