Felix Queißner

Results 81 issues of Felix Queißner

Can you add the `zig` and `zig-package` tag to your repository? This way, the repository will be discoverable on https://zig.pm/ and manually via the GitHub search

This is required for more complex packages that depend on each other. My proposal is to do the following format change: ```json { "dependencies": { "${import name 1}": "${package name...

proposal

Implement means to allow the following to be used: ```zig const CliOptions = struct { help: bool = true, output: ?[]const u8 = null, long: u32 = 0, pub const...

feature

I was just searching for a song by Netpoet and couldn't find it via the search function: [Search "It's On"](https://demozoo.org/search/?q=It%27s+On&category=) which is the literal name of the [Song](https://demozoo.org/music/202666/) I assume...

search

``` error(compilation): clang failed with stderr: zig: error: clang frontend command failed with exit code 133 (use -v to see invocation) clang version 12.0.0 ([email protected]:ziglang/zig-bootstrap.git fc78f1770c0bccc5262577456da4172ae36abbc2) Target: arm-unknown-linux-android Thread model:...

bug
contributor friendly
upstream
os-android

This is a fast memory pool implementation that can be used to rapidly allocate objects of the same type. It even outperforms the null hypothesis of just leaking the memory...

I'm using a private repository similar to this for my own "package manager" (it's just a way to quickly add submodules). The current format allows these two configurations: ```json "parser-toolkit":...

proposal

### Zig Version 0.10.0-dev.4519+09236d29b ### Steps to Reproduce That problem will only occur when building for `wasm32-freestanding-musl` ~~As i don't have a smaller reproduction right now: Compile [zero-graphics](https://github.com/MasterQ32/zero-graphics) by cloning...

bug
upstream
arch-wasm32
backend-llvm

### Zig Version 0.10.0-dev.4475+5b9c8d1d6 ### Steps to Reproduce Hard to reproduce. Will only happen in a module when compiled with a lot of context code. The trigger is this: ```zig...

bug
stage2

This is a bare bones implementation of a padded array. These are similar to a sentinelled array, but the sentinel is only used for implicit length determination. These kind of...