Can C/C++ software be compiled into bytecode for later execution? (Architecture independent unix software.)

前端 未结 6 907
失恋的感觉
失恋的感觉 2021-02-04 17:34

I would want to compile existing software into presentation that can later be run on different architectures (and OS).

For that I need a (byte)code that can be easily ru

6条回答
  •  清酒与你
    2021-02-04 18:08

    Web Assembly is trying to address that now by creating a standard bytecode format for the web, but unlike the JVM bytecode, Web Assembly is more low level, working at the abstraction level of C/C++, and not Java, so it's more like what's typically called an "assembly language", which is what C/C++ code is normally compiled to.

提交回复
热议问题