gcc-5 必要なし😂

This commit is contained in:
yude 2020-09-08 20:40:10 +09:00
parent 3bf2fb5944
commit 130f4059d4
No known key found for this signature in database
GPG Key ID: A49BFB97E0AB5435
1 changed files with 4 additions and 2 deletions

View File

@ -8,13 +8,15 @@
コマンドラインで下記を実行する
* パッケージの更新
```sudo apt -y update && sudo apt -y upgrade```
* ビルドに必要なパッケージをインストール (gcc を除く)
```sudo apt -y install build-essential uuid-dev iasl git nasm python3-distutils```
* ビルドに必要なパッケージをインストール
```sudo apt -y install build-essential gcc uuid-dev iasl git nasm python3-distutils```
<!--
* gcc-5 をインストール
Ubuntu 20.04 において、既定では gcc-5 をインストールできません。sources.list に追加します。
`echo "deb http://archive.ubuntu.com/ubuntu xenial main" | sudo tee /etc/apt/sources.list.d/xenial.list`
`sudo apt -y update`
`sudo apt -y install gcc-5`
-->
* edk2 をクローン、submodule を更新
```git clone https://github.com/tianocore/edk2.git/```
```git submodule update --init```