Jackalope

DeeLMind小于 1 分钟

Jackalope

什么是Jackalopeopen in new window

编译

  1. 安装cmakeopen in new window/Visual Studio

  2. 下载项目

git clone https://github.com/googleprojectzero/Jackalope.git
cd Jackalope
git clone --recurse-submodules https://github.com/googleprojectzero/TinyInst.git
  1. 创建文件夹
mkdir build32
mkdir build64
  1. 生成make文件
cd build32
cmake -G"Visual Studio 17 2022" -A Win32 ..
cd build64
cmake -G"Visual Studio 17 2022" -A X64 ..
  1. 编译项目
cmake --build . --config Release
上次编辑于:
贡献者: DeeLMind