Hacker News new | ask | show | jobs
by Derander 4666 days ago
To a certain extent that's what the JVM is -- you just have to target its bytecode :-).
1 comments

That's not exactly a portable back-end toolkit you can just link in.
It's not really possible to do that with GC. It requires analyzing and dealing with basically every assumption about object lifetimes that is done within the system, and that typically requires you to read and understand every single line of code.

I have worked on GC projects, and imho bolting on a good GC system on an existing language runtime is considerably harder than reimplementing the entire runtime on top of a GC platform.