Justine Tunney

Results 533 comments of Justine Tunney

One trick you can use to undefine `__SSE2__` is passing `-mgeneral-regs-only` to the compiler. Making the amalgamation header warnings agnostic is a known issue. I can delete the implicit fallthrough...

I would be willing to merge a change that makes it possible to build Python extensions using Cosmopolitan. 1. The assembly code is mostly PIC compatible. There are a few...

Because Python extensions have a .py file that gets run before the native code is loaded and we can put the monkey patching code in there, which turns APE blob...

We should fix the Lua provided one. The C functions are `if (IsLinux()) { .... }`, `if (IsWindows()) { .... }`, etc.

Just use forward slash. The system calls automatically change `/` to `\` when it converts from utf-8 to utf-16.

Does Lua change its behavior based on that? I want the portability guff to be abstracted by the POSIX interfaces. How about we just add an API to redbean. What...

undeflate() is yolo grade deflate intended for tiny mode. It assumes the caller knows the size and stuffs invalid pages along the side in case you're handling untrustworthy data and...

Earlier on this project's history I took certain liberties with functions like `writev` being defined as allowing partial completion. But I've been working to improve that since I'm reasonably certain...

I've now addressed the issue you encountered. Thanks for the report. It's amazing how easily code compiles on Windows when you have the canonical GNU/Linux compiler. It'd do much to...

Cross9 is the result of trial and error last year using artifacts sourced from gnu / msys2 / mingw64 / etc. That's documented by the accompanying zipped work directory which...