Matthew Lugg
Matthew Lugg
It's easy to do FP unwinding from a CPU context: you just report the captured ip/pc value first, and then unwind from the captured fp value. All this really needed...
Today, the following is valid Zig: ```zig outer: while (true) { while (inner_cond) { if (something) { break :outer; } } if (something_else) { break; } } ``` Code like...
See commit messages.
Also update the compiler's logFn to use color like the default one does.
## Background Most operating systems have the concept of "the environment": a set of key-value string mappings ("environment variables") which can be modified by any process for itself and are...
This issue supersedes mlugg/setup-zig#15. Currently, the easiest way to set up a "community mirror" of Zig tarballs is using Mach's Wrench. It works well, but is written in Go and...