-
### Zig Version
0.11.0-dev.3382+c16d4ab9e
### Steps to Reproduce and Observed Behavior
simply call `sched_setaffinity`. For example, my cpu has 8 cores, and
```
> taskset -cp 0-7 1296090
…
-
### Zig Version
0.12.0-dev.494+a8d2ed806
### Steps to Reproduce and Observed Behavior
Clone https://github.com/dweiller/zimalloc and run
```sh
git checkout d577c4a3
zig build
```
~I will…
-
### Zig Version
0.13.0
### ZLS Version
0.13.0
### Client / Code Editor / Extensions
VS Code with Zig Language Extension (ziglang.vscode-zig)
### Steps to Reproduce and Observed Behav…
-
Currently, there are two essential utility functions absent in the `Memory` structure that play a crucial role in validating memory. We need the following implementations in Ziglang:
### A `validat…
-
Extracted from #14523.
Given a foo.zon file:
```zig
.{
.bar = "hello",
}
```
it should be possible to `@import` it as a comptime-known value:
```zig
const data = @import("foo.zon"…
-
I think it will be pretty useful to be able to pass flags to clang/llvm itsef. I use them quite often in low level scenarious.
For it to be possilbe, all it needs is to add another function which wil…
-
I'm fairly sure status quo was just an oversight.
If `x` is a tuple or array, `x.len` is a comptime-known `usize` whose value is the length of the aggregate. It would make perfect sense for this to…
mlugg updated
8 months ago
-
The [JSON Compilation Database](https://clang.llvm.org/docs/JSONCompilationDatabase.html) is a file format that stores information about files compiled in a build.
This database can be then consume…
-
### Zig Version
0.11.0
### Steps to Reproduce and Observed Behavior
- https://git.sr.ht/~nektro/magnolia-desktop
- HEAD is `972f719bbd3de730d6f19a5ef52175486db365b7` at time of writing
- `n…
-
I'm trying to parallel frontend of my software rasterizer using zjobs. The JobQueue with default configuration occupied at least 80% cpu, even when I'm not scheduling any jobs.
OS: windows 11 x64
zi…