Gavin Hayes
Gavin Hayes
> I don't think I can support it anymore. I guess Windows 7 is pretty legacy and sounds difficult to support. I never moved my desktop up after having constant...
> You could also use the testvectors here: https://github.com/ietf-wg-cellar/flac-test-files/tree/main/subset > > These FLAC files are specially crafted to test decoders, and are already on github. That does look like a...
@wingdeans I'm interested in merging this. Can you send the copyright assignment to Justine and report back when or if you've done so? If you're unable or not interested feel...
Unicode strace output could also potentially be fixed for all Windows in our support vector by modifying `klog` to convert to UTF-16 and print using `WriteConsoleW` when possible instead of...
Unfortunately I don't think cosmocc is useful for your use case. We only support x86_64 and arm64/aarch64 architectures.
Thank you for the thorough investigation and fix. To ensure `SA_RESTART` is working as expected / the `EINTR` hack is not needed, could you please write some tests? I was...
You can run the test suite just by making items under `o/$MODE/test` for example `make MODE= o//test/libc/stdio` builds and runs the stdio tests or `make MODE= o//test/libc/stdio/fgets_interrupt_test.runs` builds and runs...
> Are there examples of software that have a config check for `/dev/urandom` but not for `getrandom`? It doesn't do a config check, but Perl defaults to `/dev/urandom` and doesn't...
> One thing is that you may want to use `CryptGenRandom` on Windows - I don't know if `getrandom` uses that or not yet. It probably should. Did you mean...
> Oh actually on closer inspection it looks like maybe you should use `__getrandom` out of `libc/calls/syscall_support-sysv.internal.h` instead of directly calling `ProcessPrng`. (The former is just a simple wrapper around...