| 28 Dec 2025 |
hexa | ok, I'm disabling a test on uvloop | 09:30:54 |
hexa | * ok, I'm disabling a test on uvloop on darwin | 09:30:57 |
hexa | not sure why it appeared cached to me, maybe I got lucky | 09:31:11 |
hexa | https://github.com/NixOS/nixpkgs/pull/474758 | 09:41:09 |
Grimmauld (any/all) | with c23, some things (e.g. nasm) fail in a creative way: They check whether stdbool.h is available, and include it if so. Which obviously breaks on C23, where bool can't be typedefed. No idea why this didn't break on glibc, i didn't look at that 🤷 | 19:22:55 |
| 29 Dec 2025 |
@ghpzin:envs.net | typedefs in stdbool.h are conditional on __STDC_VERSION__ > 201710L So you can safely include it there. In musl version they are not. | 03:04:01 |
@ghpzin:envs.net | typedefs in stdbool.h are conditional on __STDC_VERSION__ > 201710L So you can safely include it there. In musl version they are not: https://git.musl-libc.org/cgit/musl/tree/include/stdbool.h | 03:06:02 |
@ghpzin:envs.net | true/false in stdbool.h are conditional on __STDC_VERSION__ > 201710L So you can safely include it. In musl they are not: https://git.musl-libc.org/cgit/musl/tree/include/stdbool.h | 07:58:27 |