-
Found in Zig https://github.com/ziglang/zig/issues/18872 with LLVM 17.
LLVM gets stuck in `AttemptToFoldSymbolOffsetDifference` for forever. The longest I've ran a build for is 14 hours on an Apple…
-
### Zig Version
0.12.0-dev.800+a9b37ac63
### Steps to Reproduce and Observed Behavior
Using the following file:
```zig
const std = @import("std");
pub fn main() !void {
const HOST = "irc.…
-
## Status quo
Status quo of trailing whitespace:
* Non-ASCII Unicode trailing whitespace outside of a comment or multiline string is an error:
```zig
test {}
```
```
x.zig:1:9: error:…
-
在新的项目中,由于必须要使用sqlite数据库,所以引入了 [`go-sqlite3`](https://github.com/mattn/go-sqlite3) 库,而且目标还是安卓开发板,板子是 `aarch64` 架构,也就是说,目的是要把启用了CGO的项目交叉编译到 aarch64 安卓系统。
本篇文章不局限于 aarch64 架构,其他架构同理,只是到时候下载的工具包不太一样
…
-
I'm new to Zig, so it's probably something on my end, but I've encountered an error while building the project. Here's the error message:
```
root struct of file 'std' has no member named 'Build'
…
-
### Zig Version
0.14.0-dev.58+254a3ba9d
### Steps to Reproduce and Observed Behavior
This example program will reach unreachable code in `std.posix.timerfd_create`:
```zig
const std = @im…
Cydox updated
2 months ago
-
Ran into this building Zig on Windows using the compiler dev kit tarball, on a system that *does* have MSVC installed (not sure if that matters)
According to `git bisect` the problem was introduced…
ehaas updated
4 months ago
-
### Zig Version
0.12.0-dev.3652+a59ad719d
### Steps to Reproduce and Observed Behavior
Code:
```zig
const std = @import("std");
pub fn main() void {
var a: f32 = 5.0;
var b: f32 = 2.…
-
### Zig Version
0.11.0-dev.4191+1bf16b172
### Steps to Reproduce and Observed Behavior
I have a small zig file that tries to read a file line-by-line. This is the code
```zig
const std = @impor…
-
The link to the Zig Standard Library from the language reference is linking to master instead of 0.12
Is currently:
> `The Zig Standard Library has its own documentation.> `
Would expect
> `Th…