mirror of https://gitee.com/openkylin/docs.git
update 02_基础操作/应用和游戏/在openKylin-RISC-V编译运行Godot.md.
Signed-off-by: DSOE1024 <9680100+DSOE1024@user.noreply.gitee.com>
This commit is contained in:
parent
3af33941bb
commit
4029977e2c
|
@ -55,7 +55,11 @@ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
|
|||
|
||||
# 输入gcc-13对应的数字序号
|
||||
sudo update-alternatives --config gcc
|
||||
```
|
||||
|
||||

|
||||
|
||||
```bash
|
||||
# g++也是相同的步骤。
|
||||
|
||||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 100
|
||||
|
@ -65,8 +69,6 @@ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
|
|||
sudo update-alternatives --config g++
|
||||
```
|
||||
|
||||
|
||||
|
||||
Godot项目使用SCons构建,SCons是一个开放源代码、以Python语言编写的自动化构建工具,在openKylin使用pip包安装程序安装SCons。
|
||||
```bash
|
||||
sudo apt install python3-pip
|
||||
|
|
Loading…
Reference in New Issue