A graph of programming languages connected through compilers
11–20 of 110 posts
Re: A graph of programming languages connected through compilers
#12Nice visualization, it can be improved though. There are Java compilers directly to native code though, the Oracle JVM isn't the only path.
Every road leads to GCC, or in this case, GCJ. ;)
Re: A graph of programming languages connected through compilers
#13Re: A graph of programming languages connected through compilers
#14A 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-...
Languages are compiled to LLVM IR and then to WebAssembly. These are shown, right?
Re: A graph of programming languages connected through compilers
#15Re: A graph of programming languages connected through compilers
#16Re: A graph of programming languages connected through compilers
#17Re: A graph of programming languages connected through compilers
#18Re: A graph of programming languages connected through compilers
#19Nice visualization, it can be improved though. There are Java compilers directly to native code though, the Oracle JVM isn't the only path.
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
#20Nice visualization, it can be improved though. There are Java compilers directly to native code though, the Oracle JVM isn't the only path.