Change github links to codeberg

This commit is contained in:
Luna Schwalbe 2025-12-02 17:14:53 +01:00 committed by mlugg
parent 58e3c2cefd
commit adc5a39de2
4 changed files with 8 additions and 10 deletions

View file

@ -485,16 +485,14 @@ interpret your words.
### Find a Contributor Friendly Issue ### Find a Contributor Friendly Issue
The issue label The issue label
[Contributor Friendly](https://github.com/ziglang/zig/issues?q=is%3Aissue+is%3Aopen+label%3A%22contributor+friendly%22) [Contributor Friendly](https://codeberg.org/ziglang/zig/issues?labels=741726&state=open)
exists to help you find issues that are **limited in scope and/or exists to help you find issues that are **limited in scope and/or
knowledge of Zig internals.** knowledge of Zig internals.**
Please note that issues labeled Please note that issues labeled
[Proposal](https://github.com/ziglang/zig/issues?q=is%3Aissue+is%3Aopen+label%3Aproposal) [Proposal: Proposed](https://codeberg.org/ziglang/zig/issues?labels=746937&state=open)
but do not also have the are still under consideration, and efforts to implement such a proposal have
[Accepted](https://github.com/ziglang/zig/issues?q=is%3Aissue+is%3Aopen+label%3Aaccepted) a high risk of being wasted. If you are interested in a proposal which is
label are still under consideration, and efforts to implement such a proposal
have a high risk of being wasted. If you are interested in a proposal which is
still under consideration, please express your interest in the issue tracker, still under consideration, please express your interest in the issue tracker,
providing extra insights and considerations that others have not yet expressed. providing extra insights and considerations that others have not yet expressed.
The most highly regarded argument in such a discussion is a real world use case. The most highly regarded argument in such a discussion is a real world use case.
@ -777,7 +775,7 @@ If you will be debugging the Zig compiler itself, or if you will be debugging
any project compiled with Zig's LLVM backend (not recommended with the LLDB any project compiled with Zig's LLVM backend (not recommended with the LLDB
fork, prefer vanilla LLDB with a version that matches the version of LLVM that fork, prefer vanilla LLDB with a version that matches the version of LLVM that
Zig is using), you can get a better debugging experience by using Zig is using), you can get a better debugging experience by using
[`lldb_pretty_printers.py`](https://github.com/ziglang/zig/blob/master/tools/lldb_pretty_printers.py). [`lldb_pretty_printers.py`](https://codeberg.org/ziglang/zig/src/branch/master/tools/lldb_pretty_printers.py).
Put this line in `~/.lldbinit`: Put this line in `~/.lldbinit`:

View file

@ -39,7 +39,7 @@ v2.2.5.
The file `lib/libc/glibc/abilist` is a Zig-specific binary blob that The file `lib/libc/glibc/abilist` is a Zig-specific binary blob that
defines the supported glibc versions and the set of symbols each version defines the supported glibc versions and the set of symbols each version
must define. See https://github.com/ziglang/glibc-abi-tool for the must define. See https://codeberg.org/ziglang/libc-abi-tools for the
tooling to generate this blob. The code in `glibc.zig` parses the abilist tooling to generate this blob. The code in `glibc.zig` parses the abilist
to build version-specific stub libraries on demand. to build version-specific stub libraries on demand.

View file

@ -79,7 +79,7 @@ enable_rosetta: bool = false,
enable_wasmtime: bool = false, enable_wasmtime: bool = false,
/// Use system Wine installation to run cross compiled Windows build artifacts. /// Use system Wine installation to run cross compiled Windows build artifacts.
enable_wine: bool = false, enable_wine: bool = false,
/// After following the steps in https://github.com/ziglang/zig/wiki/Updating-libc#glibc, /// After following the steps in https://codeberg.org/ziglang/infra/src/branch/master/libc-update/glibc.md,
/// this will be the directory $glibc-build-dir/install/glibcs /// this will be the directory $glibc-build-dir/install/glibcs
/// Given the example of the aarch64 target, this is the directory /// Given the example of the aarch64 target, this is the directory
/// that contains the path `aarch64-linux-gnu/lib/ld-linux-aarch64.so.1`. /// that contains the path `aarch64-linux-gnu/lib/ld-linux-aarch64.so.1`.

View file

@ -1,6 +1,6 @@
//! This script updates the .c, .h, .s, and .S files that make up the start //! This script updates the .c, .h, .s, and .S files that make up the start
//! files such as crt1.o. Not to be confused with //! files such as crt1.o. Not to be confused with
//! https://github.com/ziglang/glibc-abi-tool/ which updates the `abilists` //! https://codeberg.org/ziglang/libc-abi-tools which updates the `abilists`
//! file. //! file.
//! //!
//! Example usage: //! Example usage: