- STCompiler 入口在 compiler/src/main.cpp,链 compiler+isa - host/ 改名 executor/,BytecodeExecutor 链 vm+isa 不链 compiler - compiler/vm 补 PUBLIC 链 isa;顶层加入 executor - CTest:版本冒烟 2 例 + isa_roundtrip(89 断言),3/3 通过
16 lines
246 B
C++
16 lines
246 B
C++
/**
|
|
* @file main.cpp
|
|
* @brief BytecodeExecutor 可执行入口
|
|
* @author
|
|
* @date 2026-08-19
|
|
*/
|
|
|
|
#include <cstdio>
|
|
|
|
int main(int argc, char** argv) {
|
|
(void)argc;
|
|
(void)argv;
|
|
std::printf("BytecodeExecutor 0.1\n");
|
|
return 0;
|
|
}
|