▲ | seabrookmx 5 days ago | |
Dotnet allows you to make stand-alone builds without AOT compilation as well. Like with bun, it simply bundles the JIT and you get a large executable. The command looks like `dotnet publish -r linux-x64 --self-contained true` (substitute your platform obviously). | ||
▲ | banashark 5 days ago | parent [-] | |
Ah I had completely forgotten about that with all of the AOT stuff I've been watching. That's a great point. |