44 languages 42 languages compile to Machine Code Wait, what? There are 2 languages that don't compile to Machine Code? Which ones are those, and how is it even possible?
A graph of programming languages connected through compilers
31–40 of 110 posts
Re: A graph of programming languages connected through compilers
#3244 languages 42 languages compile to Machine Code Wait, what? There are 2 languages that don't compile to Machine Code? Which ones are those, and how is it even possible?
There's ActionScript, which can only be interpreted.
Re: A graph of programming languages connected through compilers
#33Re: A graph of programming languages connected through compilers
#34A few missing items: - CIL to C++ using CoreRT/AoT compiler [1] - JVM to CIL using ikvmc [2] - Quite a few languages to WebAssembly using LLVM [3] - J# if you are willing to include dead but somewhat significant languages [1] https://blogs.msdn.microsoft.com/alphageek/2016/10/13/native... [2] http://www.ikvm.net/userguide/ikvmc.html [3] https://stackoverflow.com/questions/43540878/what-languages-...
- Quite a few languages to WebAssembly using LLVM Languages are compiled to LLVM IR and then to WebAssembly. These are shown, right?
Re: A graph of programming languages connected through compilers
#35Did Javascript become the babelfish of all languages?
Re: A graph of programming languages connected through compilers
#36Nice visualization, it can be improved though. There are Java compilers directly to native code though, the Oracle JVM isn't the only path.
According to this graph one could actually get from Java to Objective-C to LLVM-IR to Machine Code... Or with LLVM-IR to C in the last step you could get from Java to C...
Re: A graph of programming languages connected through compilers
#37Re: A graph of programming languages connected through compilers
#3844 languages 42 languages compile to Machine Code Wait, what? There are 2 languages that don't compile to Machine Code? Which ones are those, and how is it even possible?
It is super-multiplatform.
Re: A graph of programming languages connected through compilers
#39Re: A graph of programming languages connected through compilers
#4044 languages 42 languages compile to Machine Code Wait, what? There are 2 languages that don't compile to Machine Code? Which ones are those, and how is it even possible?
Instead of compiling to machine code, you compile to another language instead. C++ was originally compiled to C, for example.
Why would you think it wasn't possible?