box86
Linux 用户空间的 x86 应用模拟器。
使用 Box86 可以在 ARM 或其他非 x86 架构的 Linux 操作系统上运行 x86 Linux 程序。
步骤 (以 Linux 平台为例)
1.安装相关依赖
sudo apt install git wget cmake build-essential python3 gcc-arm-linux-gnueabihf
2.克隆仓库
git clone https://github.com/ptitSeb/box86
3.编译
cd box86
mkdir build
cd build
cmake .. -DARM_DYNAREC=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo
make
make install