ChanServ changed the topic of #zig to: zig programming language | ziglang.org | be excellent to each other | channel logs: https://irclog.whitequark.org/zig/
Ichorio has quit [Read error: Connection reset by peer]
Ichorio has joined #zig
Ichorio has quit [Ping timeout: 272 seconds]
steveno_ has joined #zig
steveno has quit [Ping timeout: 250 seconds]
return0e has quit [Remote host closed the connection]
return0e has joined #zig
Ichorio has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
steveno_ has quit [Quit: Leaving]
davr0s has joined #zig
Ichorio has quit [Ping timeout: 268 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
_whitelogger has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
suirad has joined #zig
rlr has joined #zig
_whitelogger has quit [Remote host closed the connection]
_whitelogger has joined #zig
davr0s has joined #zig
m4ge123 has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
walac has quit [Ping timeout: 250 seconds]
walac has joined #zig
davr0s has joined #zig
davr0s has quit [Client Quit]
davr0s has joined #zig
davr0s has quit [Client Quit]
davr0s has joined #zig
davr0s has quit [Client Quit]
davr0s has joined #zig
walac has quit [Ping timeout: 250 seconds]
walac has joined #zig
wilsonk has quit [Read error: Connection reset by peer]
wilsonk has joined #zig
very-mediocre has joined #zig
Ichorio has joined #zig
Ichorio has quit [Ping timeout: 268 seconds]
Ichorio has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
Ichorio has quit [Ping timeout: 272 seconds]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
return0e_ has joined #zig
return0e has quit [Ping timeout: 245 seconds]
DutchGh0st has joined #zig
<DutchGh0st> if you await an async fn, it still allows other async fn's to make progress, right?
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
<DutchGh0st> well, it was in the ubuntu shell on Windows..
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MajorLag has left #zig [#zig]
DutchGh0st has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tbodt has quit [Ping timeout: 250 seconds]
davr0s has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MajorLag has joined #zig
<MajorLag> andrewrk, I'm getting an access denied from the Linux master link.
<andrewrk> MajorLag, let me have a look
<andrewrk> I believe this is caused by https://github.com/ziglang/zig/issues/1046 which I have a good idea how to fix now (see the comment there)
<andrewrk> going to move the linux & windows builds to azure, then have all 3 of those trigger a "update the website" build, which will put the actual URL into the download page, with size and shasum etc
<MajorLag> huh, ok. I didn't think I'd ever visited the link before on this device, but I must be mistaken.
<andrewrk> the way it works is needlessly confusing. I will feel relieved when I implement the above plan
davr0s has joined #zig
<MajorLag> azure should finally solve the timeout issue too right?
<andrewrk> yes, we have a static macos build on azure right now, with release modes enabled. they give 6 hours
<andrewrk> I haven't measured how long a qemu build / test run will take (trying to support freebsd / arm)
very-mediocre has quit [Ping timeout: 256 seconds]
DutchGh0st has joined #zig
DutchGh0st has quit [Client Quit]
DutchGh0st has joined #zig
DutchGh0st has quit [Client Quit]
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
davr0s has joined #zig
tyler569 has quit [Ping timeout: 260 seconds]
tyler569 has joined #zig
davr0s has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<MajorLag> hmm... the @truncate behavior of erroring when trying to truncate a smaller type to a larger one is a tad problematic for generic code.
emekoi has joined #zig
<MajorLag> and meta.bitCount should return comptime_int. I should have caught that in the PR. I'll try and remember to get it on the next one.
<emekoi> can you call extern functions at compile time?
<MajorLag> I'd be very surprised if you could.
<MajorLag> Hmm... attempting to choose between @intCast and @truncate at comptime is segfaulting the compiler. I'll try and remember to submit an issue after I spend some time trying to work around this,.
<emekoi> in std.event.Locked how do we get access to the value from the HeldLock? do we just use the value field?
<emekoi> and if that's so does pub do anything for struct fields?