Jackalope
小于 1 分钟
Jackalope
Jackalope
什么是编译
安装cmake/Visual Studio
下载项目
git clone https://github.com/googleprojectzero/Jackalope.git
cd Jackalope
git clone --recurse-submodules https://github.com/googleprojectzero/TinyInst.git
- 创建文件夹
mkdir build32
mkdir build64
- 生成make文件
cd build32
cmake -G"Visual Studio 17 2022" -A Win32 ..
cd build64
cmake -G"Visual Studio 17 2022" -A X64 ..
- 编译项目
cmake --build . --config Release