From 61b147333371c0753c37acd337e230a5cb6b453d Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 6 Oct 2021 18:08:31 -0700 Subject: [PATCH] wiki maintenance --- Building-Zig-on-Windows.md | 3 +-- Community.md | 5 +++-- Troubleshooting-Build-Issues.md | 7 ++++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Building-Zig-on-Windows.md b/Building-Zig-on-Windows.md index 2e3e286..0c9c1f8 100644 --- a/Building-Zig-on-Windows.md +++ b/Building-Zig-on-Windows.md @@ -6,8 +6,7 @@ This one has the benefit that LLVM, LLD, and Clang are built in Release mode, while your Zig build has the option to be a Debug build. It also works completely independently from MSVC so you don't need it to be installed. -1. [Navigate to the newest successful CI run of zig-bootstrap](https://github.com/ziglang/zig-bootstrap/actions/workflows/artifact.yml?query=is%3Asuccess+branch%3Amaster+) -2. Scroll to the bottom and download the "artifact" that looks something like "zig+llvm+lld+clang-x86_64-windows-gnu-VERSION.zip" +* [zig+llvm+lld+clang-x86_64-windows-gnu-0.9.0-dev.1249+210ef5af8.zip](https://ziglang.org/deps/zig+llvm+lld+clang-x86_64-windows-gnu-0.9.0-dev.1249+210ef5af8.zip) (148 MiB) (sha256 3aa809f69c631c23fb25ad022f8f88a2d43ecf84612283f1be1cc7a4a664d2c4) Please consider [sponsoring Zig](https://github.com/sponsors/ziglang). ❤️ diff --git a/Community.md b/Community.md index 1ed8e94..4a40d0b 100644 --- a/Community.md +++ b/Community.md @@ -4,13 +4,14 @@ The Zig community is decentralized. Anyone is free to start and maintain their o ### IRC - * #zig on [web.libera.chat](https://web.libera.chat/) + * #zig on irc.libera.chat - Moderator: [Andrew Kelley](https://github.com/andrewrk/) - (anyone else want to help?) - Rules: - Treat each other with kindness and respect. - No discussion of things that are both controversial and off-topic. - Be constructive. + - [Web App](https://web.libera.chat/) - [New Libera.chat Logs, experimental](https://marler8997.github.io/zig-irc-webpage/) - [Old Freenode Logs](https://freenode.irclog.whitequark.org/zig/) @@ -127,4 +128,4 @@ https://zig.show/ ## Others -- [Zig UserMap](https://usermap.random-projects.net), see where the Ziguanas live! ([Contribute](https://github.com/zig-community/user-map)) \ No newline at end of file +- [Zig UserMap](https://usermap.random-projects.net), see where the Ziguanas live! ([Contribute](https://github.com/zig-community/user-map)) diff --git a/Troubleshooting-Build-Issues.md b/Troubleshooting-Build-Issues.md index f50baca..bf216b0 100644 --- a/Troubleshooting-Build-Issues.md +++ b/Troubleshooting-Build-Issues.md @@ -53,8 +53,9 @@ rm -rf CMakeFiles Then try running the cmake command again. -## Still not working? +## High Memory Requirements -If you are failing at the last stage ```[99%] Building self-hosted component /PATHTOZIG/zig/build/zig1.o```, make sure you have enough memory, as the process can take more than 10Gib of memory. +If you are failing at the last stage ```[99%] Building self-hosted component /PATHTOZIG/zig/build/zig1.o```, make sure you have enough memory, as the process can take more than 10GiB of memory. -Log on to one of the [[Community]] spaces and ask for help. \ No newline at end of file +Related issue: [zig0 takes too much RAM to build zig1.o](https://github.com/ziglang/zig/issues/6485) +The main development effort of Zig is focused on the self-hosted compiler, which solves this issue.