Linuxビルドに必要な依存関係について記載 (#3)

* Linuxビルドに必要な依存関係について記載
前から気になっていた「SDカードにコピー」の記事の修正
Ruby2.7インストールの方法を記載

* レビュー内容を反映

Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
This commit is contained in:
Threebents 2022-01-08 20:01:24 +09:00 committed by GitHub
parent 773945e7f9
commit 9b375fd6fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 3 deletions

View File

@ -20,7 +20,7 @@ excerpt: ""
以下のコマンドで依存関係をインストールします。
```sh
sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi debootstrap qemu-user-static
sudo apt install build-essential bison flex libncurses5-dev gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf libssl-dev bc lzop qemu-user-static debootstrap kpartx
```

View File

@ -77,6 +77,7 @@ GPartedの右上のメニューからSDカードを選びます。容量で選
これらをSDカードのFAT32のパーティションへコピーします。
2. ターミナルを起動して `cd buildbrain``buildbrain` ディレクトリに入ります
以下のコマンドを実行します。
```sh

View File

@ -11,13 +11,28 @@ excerpt: ""
# 準備
WikiをCloneします。
GitHubにログインした状態でWikiをcloneします。
```sh
$ git clone git@github.com:brain-hackers/wiki.brainux.org.git
```
何らかの方法でRubyをインストールし、手元でのビルドに必要な依存関係をインストールします。
2022/1/8現在、Ubuntu 20.04.3 LTSでは以下のコマンドでRuby 2.7がインストールされます。お使いのディストリビューション標準のパッケージマネージャーでRuby 2.7系がインストールできない場合、rbenvを使うなどして適宜Ruby 2.7系の最新バージョンをインストールしてください。
```sh
$ sudo apt install ruby-full
```
Rubyがインストールできたら、以下のようにしてRuby 2.7が実行されることを確認します。
```sh
$ ruby -v
ruby 2.7.0p0 (2019-12-25 revision 647ee6f091) [x86_64-linux-gnu]
```
次に手元でのビルドに必要な依存関係をインストールします。
```sh
$ cd wiki.brainux.org