|
|
编译就按照他说的来就行。上面写了怎么编译,这个是我自己整理出来的编译的步骤:第一步安装curl:sudo apt-get install curl
第二步骤安装rust和cargo:curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source ~/.profile
source ~/.cargo/env
rustc -V
第三步骤安装g++:sudo apt-get install g++
第四步安装make: sudo apt install make |
|