Saagar Jha

Results 179 comments of Saagar Jha

I looked around a little and didn't find a satisfactory answer on this one, not sure if there is an update catalog for this. I'll update this if I do...

Kind of a self-promotion, but I rolled my own simple version that you might be interested in. It's much less flexible (currently Monterey+) because I haven't bothered to make it...

No, it needs to be arm64e to match Dock.

I lied, that code is likely outdated/not complete. I know of at least one statically linked binary running.

Oh, no, Mach-O totally does static binaries. In fact, here's how to make one you can run on your Intel machine: ```console $ clang -x assembler-with-cpp -static -nostdlib - .intel_syntax...

System call numbers on macOS are not stable, so Apple would like you to go through libc. Go used to create static binaries on macOS but they would constantly break...

Rosetta is closed source and requires the ability to generate arbitrary executable code and kernel support to function, which makes unfortunately makes it infeasible to use in iSH. Supporting x86-64...

We don't really need votes for this issue, it's already been fixed and will ship in the next release.

membarrier is intended to be a memory barrier across all threads of the process, not just the task that called it. I haven't looked at what Linux is doing here...