authorgravatar for eamon.r.burns@gmail.comEamon Burns <eamon.r.burns@gmail.com> 2025-11-25 10:10:58-08:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-26 09:36:58+01:00
log5cb72fce91582a8c06c548013575dabe121a3398
tree6270ccfbf44a2a98d70a09645c7fcba503261c63
parent6ef3af4c1c4edb8c9bba3f8c3c0dd58d64b93184

docs: fix up some README links

- https://github.com/ziglang/zig-bootstrap -> https://codeberg.org/ziglang/zig-bootstrap - https://github.com/ziglang/qemu-static -> https://codeberg.org/ziglang/qemu-static - Add <...> around bare URLs - Link to tips inside README.md, rather than in CONTRIBUTING.md

1 files changed, 6 insertions(+), 6 deletions(-)

README.md+6-6
...@@ -3,7 +3,7 @@...@@ -3,7 +3,7 @@
3A general-purpose programming language and toolchain for maintaining3A general-purpose programming language and toolchain for maintaining
4**robust**, **optimal**, and **reusable** software.4**robust**, **optimal**, and **reusable** software.
55
6https://ziglang.org/6<https://ziglang.org/>
77
8## Documentation8## Documentation
99
...@@ -21,7 +21,7 @@ running `zig std`, which will open a browser tab....@@ -21,7 +21,7 @@ running `zig std`, which will open a browser tab.
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://ziglang.org/learn/getting-started/#managers)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://codeberg.org/ziglang/zig-bootstrap)
2525
26A Zig installation is composed of two things:26A Zig installation is composed of two things:
2727
...@@ -101,7 +101,7 @@ Dependencies:...@@ -101,7 +101,7 @@ Dependencies:
101 * LLVM, Clang, and LLD libraries built using Zig.101 * LLVM, Clang, and LLD libraries built using Zig.
102102
103The easiest way to obtain both of these artifacts is to use103The easiest way to obtain both of these artifacts is to use
104[zig-bootstrap](https://github.com/ziglang/zig-bootstrap), which creates the104[zig-bootstrap](https://codeberg.org/ziglang/zig-bootstrap), which creates the
105directory `out/zig-$target-$cpu` and `out/$target-$cpu`, to be used as105directory `out/zig-$target-$cpu` and `out/$target-$cpu`, to be used as
106`$ZIG_PREFIX` and `$LLVM_PREFIX`, respectively, in the following command:106`$ZIG_PREFIX` and `$LLVM_PREFIX`, respectively, in the following command:
107107
...@@ -232,7 +232,7 @@ You now have the `zig.exe` binary at `bin\zig.exe` and you can run the tests:...@@ -232,7 +232,7 @@ You now have the `zig.exe` binary at `bin\zig.exe` and you can run the tests:
232bin\zig.exe build test232bin\zig.exe build test
233```233```
234234
235This can take a long time. For tips & tricks on using the test suite, see [Contributing](https://github.com/ziglang/zig/blob/master/.github/CONTRIBUTING.md#editing-source-code).235This can take a long time. For tips & tricks on using the test suite, see [Editing Source Code](#editing-source-code).
236236
237Note: In case you get the error "llvm-config not found" (or similar), make sure that you have **no** trailing slash (`/` or `\`) at the end of the `-DCMAKE_PREFIX_PATH` value. 237Note: In case you get the error "llvm-config not found" (or similar), make sure that you have **no** trailing slash (`/` or `\`) at the end of the `-DCMAKE_PREFIX_PATH` value.
238238
...@@ -613,7 +613,7 @@ architecture....@@ -613,7 +613,7 @@ architecture.
613613
614QEMU packages provided by some system package managers (such as Debian) may be614QEMU packages provided by some system package managers (such as Debian) may be
615a few releases old, or may be missing newer targets such as aarch64 and RISC-V.615a few releases old, or may be missing newer targets such as aarch64 and RISC-V.
616[ziglang/qemu-static](https://github.com/ziglang/qemu-static) offers static616[ziglang/qemu-static](https://codeberg.org/ziglang/qemu-static) offers static
617binaries of the latest QEMU version.617binaries of the latest QEMU version.
618618
619##### Testing Non-Native glibc Targets619##### Testing Non-Native glibc Targets
...@@ -745,7 +745,7 @@ provided by the `zig std` HTTP server as well as produced by `-femit-docs`....@@ -745,7 +745,7 @@ provided by the `zig std` HTTP server as well as produced by `-femit-docs`.
745745
746## Testing Zig Code With LLDB746## Testing Zig Code With LLDB
747747
748[@jacobly0](https://github.com/jacobly0) maintains a fork of LLDB with Zig support: https://github.com/jacobly0/llvm-project/tree/lldb-zig748[@jacobly0](https://github.com/jacobly0) maintains a fork of LLDB with Zig support: <https://github.com/jacobly0/llvm-project/tree/lldb-zig>
749749
750This fork only contains changes for debugging programs compiled by Zig's self-hosted backends, i.e. `zig build-exe -fno-llvm ...`.750This fork only contains changes for debugging programs compiled by Zig's self-hosted backends, i.e. `zig build-exe -fno-llvm ...`.
751751