Justine Tunney

Results 533 comments of Justine Tunney

Thanks for reporting this. We shouldn't be using the `si_` field name prefixes in our Linux structs. I'll push a change that updates this for `si_signo` and all the other...

I fixed all the build errors on NetBSD using my SDF shell. I'm having trouble getting Blink to fully pass tests though. The system is returning weird errors like `EPERM`...

The solution I'd propose is to put `__attribute__((__sysv_abi__))` on every single op and micro-op function. Then require that GCC 6+ be used to build on Windows if JIT support is...

That problem is easily solved by passing the `-mno-red-zone` flag. I've always used it for Cosmopolitan Libc since (1) operating system code has this same problem, and (2) Cosmo's [garbage...

Those red zone binaries will emulate just fine, since they're running in a virtualized space. This will make sense if you flip the `LOG_COD` bit in [blink/log.h](blink/log.h) and look at...

We're two steps away from having JIT on Cygwin. ![image](https://user-images.githubusercontent.com/49262/212566209-0d316485-b5a9-406b-9aeb-ed7c1bf578ab.png)

I got JIT mostly working on Cygwin. I had to change nearly every line in the entire codebase to do it. However there's still a lot more work that needs...

> I can see that JIT has been disabled on Cygwin by default, but how can I enable it (from the code on the master branch)? Right now you need...

According to GDB the segfault is happening in Actor() because the callee-saved register %rsi is being clobbered. I'm still not sure yet why. ![image](https://user-images.githubusercontent.com/49262/213118851-37e950b4-93cb-42fc-ab44-5457dac60bf7.png)

Looks like I'm going to be learning how to use GNU gettext today. We can certainly have rich internationalization and localization for the Blinkenlights TUI. With the Blink command things...