What are the disadvantages of targeting the JVM instead of x86?
Posted
by Pindatjuh
on Stack Overflow
See other posts from Stack Overflow
or by Pindatjuh
Published on 2010-06-02T18:28:43Z
Indexed on
2010/06/14
20:22 UTC
Read the original article
Hit count: 200
I'm developing a new language. My initial target was to compile to native x86 for the Windows platform, but now I am in doubt.
I've seen some new languages target the JVM (most notable Scala and Clojure). Ofcourse it's not possible to port every language easily to the JVM; to do so may lead to small changes to the language and it's design.
After posing this question, I even doubted more about this decision. I now know some "pro" JVM arguments. The original question was: is targetting the JVM a good idea, when creating a compiler for a new language?
Updated the question: What are the disadvantages of targeting the JVM instead of x86 on Windows?
© Stack Overflow or respective owner