Ali Cheraghi
Ali Cheraghi
try linking libc with `-lc`
i can't reproduce this with a little older versions (1828, 1835)
yeah, i seen it, thanks for mentioning here. exams has completely filled my time for up to two months. there's a lot of programming things to do in the summer.
sure. feel free to work on
closing since u already did it in `next-zig` branch
```zig comptime { @compileLog(@sizeOf(i24)); @compileLog(@alignOf(i24)); } ``` ``` Compile Log Output: @as(comptime_int, 4) @as(comptime_int, 4) ``` this is just wrong. i don't know how we can force `i24` to be...
Didn't work ```zig comptime { @compileLog(@sizeOf(packed struct { x: i24 })); @compileLog(@alignOf(packed struct { x: i24 })); } /// Compile Log Output: @as(comptime_int, 4) @as(comptime_int, 4) ```
ah cool. i mainly meant mach-gpu-dawn. closing now!
@plaukiu `ctx: Context` is a generic type specified at `createPlayer`/`createRecorder`. here is an example: ```zig cosnt MyContext = struct { data: [4]u8 = undefined, }; fn main() void { var...
JACK does the same. ~~just like ALSA it can be disabled with [`jack_set_error_function`](https://jackaudio.org/api/group__ErrorOutput.html#ga550faaef2bb17b03b0068fe094e7b92f)~~ ``` jack server is not running or cannot be started JackShmReadWritePtr::~JackShmReadWritePtr - Init not done for -1,...