Justine Tunney - Redbean and the Actually Portable Executable (Speakeasy JS, May 2021) - Despite the channel, this is about a C executable that "runs anywhere", including from boot
Video is nearly 3 years old now, but I think it's worth watching. Her presentation starts at around 2:30.
Basically, she explains how Redbean, a tiny (~450kb) and very fast C http server, works and how the same executable can be used to deploy it on most operating systems (she starts explaining that around 14:30)
What she's accomplished is, to me, astonishing and an impressive intellectual feat. I believe there's a pretty big caveat that it only works on x86_64, i.e. not ARM. The latter being fairly popular and not uncommon.
It wouldn't damage the impressiveness of her achievement to say "most OSes on x86."
Yea, I forget where, but she's openly lamented the rise of ARM for this reason. Not because it's a small blemish on redbean and cosmopolitan libc (what redbean uses to be "universal") ... but, IIRC, x86 had gained such ubiquity that simply sticking with it for the sake of interoperability and backwards compatibility was/is probably worth it. However accurate that is, or viable in today's tech world, I certainly resonate with the sentiment. And given what her and cosmopolitan libc seem to have accomplished (I've never used these things), it certainly seems like one of nice things we could have if we just did things in a nicer way.
Huh. In was just playing around with some samples from her page, and can't get them to run on either AMD64 or ARM. What's worst is that on my AMD machine I have Wine installed, and trying to run it fires up Wine (where it does eventually execute). You're supposed to also be able to sh it, and if I do that they just fail. On an ARM, they just fail. I was unable to get any of the samples from he page to run.
I haven't tried compiling my own program, but if the download samples don't run (for me), it doesn't give me confidence in the solution.
I remember seeing something like this a while ago. Maybe she rediscovered the hack to make multiplatform executables on her own or she was inspired. nexe has existed for 11 years now.
That nexe looks nothing like cosmopolitan. Nexe compiles a node.js into a single exe for Windows and, from the readme, can create native binaries for other distributions (Linux, Mac), something that isn't new to Nexe, you could do that with FreePascal way before Nexe. If you avoided OS specific calls, you could pull that since the early 90s with C, too.
Compiling the same codebase for N different platforms, generating N different native binaries, isn't the same as having one single executable file that runs out of the box on significantly different OSs. Put it another way, she made a java that works without needing a JRE or JDK installed.
π€ I swear I've seen this multiplatform single executable before. Maybe nexe isn't it, but as soon as she whipped out the hexcode and talking about binary headers, it felt more than a dejavu.
Someone did it years ago, put it in github, and it was called an abomination.
It's very similar in vein to this script that can be executed by bash and powershell.