praschke

Results 14 comments of praschke

> Right now, a lot of people assume that `packed struct` follows similar rules as regular or `extern` structs, which isn't true anymore with stage2. Thus, a lot of confusion...

i get this error as well, only when running gamescope on drm (running nested has visual glitches and lag) log: ``` vulkan: selecting physical device 'Intel(R) UHD Graphics 630 (CFL...

absolute paths do not make sense across machines, let alone across operating systems. additionally, `file://` only supports absolute paths; relative paths are not URIs. 1. why is this being implemented...

relative paths are not URIs, i believe it is inappropriate to add this special casing to std.Uri

@leecannon i am not saying relative paths should not be supported, i am saying that std.Uri is not the place to implement that support. additionally, this PR does nothing about...

this discussion should take place on #14339. - running zig as root is obviously an issue on least privilege grounds, but there are plenty of user-readable files with user secrets,...

log: ``` ERROR: Regex compilation for '([re][0-9a-z][0-9a-z])\s*(\+|-)\s*((0x)?[0-9a-f]+h?)' failed at 0: bad JIT option ERROR: Regex compilation for '[[0-9;]*m' failed at 0: bad JIT option ERROR: Regex compilation for '([[0-9;]*m)(?(0x[a-fA-F0-9]+)|\d+)' failed...

i think `bit struct` and `bit(u8) union`, etc feels fine enough to me to just replace `packed` with `bit`. there's no need to squish it into one word.

[a comment on #12087](https://github.com/ziglang/zig/pull/12087#issuecomment-1186351729) mistook the addition of the `__LIBMSVCRT_OS__` guard as a replacement for the `__LIBMSVCRT__` guard. [85f4e57](https://github.com/ziglang/zig/commit/85f4e579d8f3362dca11f1ccf89ffabc9d46e804) then introduced the bug. `__LIBMSVCRT_OS__` [was added](https://github.com/mingw-w64/mingw-w64/commit/187e41c7f246ffd6ade085c607fc7a2737f3bc32) to distinguish between msvcrt...