update 02_基础操作/应用和游戏/在openKylin-RISC-V编译运行Godot.md.

Signed-off-by: DSOE1024 <9680100+DSOE1024@user.noreply.gitee.com>
This commit is contained in:
DSOE1024 2024-08-30 13:55:34 +00:00 committed by Gitee
parent 3af33941bb
commit 4029977e2c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 4 additions and 2 deletions

View File

@ -55,7 +55,11 @@ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
# 输入gcc-13对应的数字序号
sudo update-alternatives --config gcc
```
![切换GCC版本](assets/%E5%9C%A8openKylin-RISC-V%E7%BC%96%E8%AF%91%E8%BF%90%E8%A1%8CGodot/%E5%88%87%E6%8D%A2GCC%E7%89%88%E6%9C%AC.png)
```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