about things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add Alpine/musl deployment note

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+8
+8
languages/ziglang/0.16/migration.md
··· 20 20 21 21 these require significant refactoring as they move to the Io-based paradigm. 22 22 23 + ## Alpine / musl deployment 24 + 25 + with `link_libc = true`, zig defaults to glibc which uses `statx` — unavailable in musl (Alpine). binary crashes with `Error relocating: statx: symbol not found`. fix: build with explicit musl target: 26 + 27 + ```bash 28 + zig build -Doptimize=ReleaseFast -Dtarget=x86_64-linux-musl 29 + ``` 30 + 23 31 ## build.zig changes 24 32 25 33 `linkLibC()` removed. use module options instead: