拉吉夫
闲着无聊写的虚拟机
整个项目用cmake建造
目标LAJIVM
虚拟机解释器的运行时
目标LJasm
虚拟机字节码的编译器
编译运行
拉吉万
编译运行时
cd LAJIVM
mkdir build
cd build
cmake ..
make
编译静态库
cd LAJIVM
mkdir build
cd build
cmake .. -DFLAG_STATIC= " TRUE " -DOUT_DIR= " the path of the static library "
make
ja
同编译lajivm运行时
使用静态库
.
├── CMakeLists.txt
├── build
├── headers -> headers of lajivm
├── lib
│ └── liblajivm_static.a
├── src
│ └── test.cc
└── st
2021-08-25 12:29:08
212KB
C++
1