-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ubuntu 20.04 のビルド方法を削除して、24.04 を追加する
- Loading branch information
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,23 +12,23 @@ $ git clone [email protected]:shiguredo/zakuro.git | |
$ sudo apt install libxext-dev libx11-dev libdrm-dev libva-dev pkg-config python3 | ||
``` | ||
|
||
## Ubuntu 20.04 (x86_64) 向けバイナリを作成する | ||
## Ubuntu 22.04 (x86_64) 向けバイナリを作成する | ||
|
||
build ディレクトリ以下で `python3 run.py ubuntu-20.04_x86_64` と打つことで Zakuro の Ubuntu 20.04 x86_64 向けバイナリが生成されます。 | ||
build ディレクトリ以下で `python3 run.py ubuntu-22.04_x86_64` と打つことで Zakuro の Ubuntu 22.04 x86_64 向けバイナリが生成されます。 | ||
|
||
```shell | ||
$ python3 run.py ubuntu-20.04_x86_64 | ||
$ python3 run.py ubuntu-22.04_x86_64 | ||
``` | ||
|
||
うまくいかない場合は `rm -rf _source _build _install && python3 run.py ubuntu-20.04_x86_64` を試してみてください。 | ||
|
||
うまくいかない場合は `rm -rf _source _build _install && python3 run.py ubuntu-22.04_x86_64` を試してみてください。 | ||
|
||
## Ubuntu 22.04 (x86_64) 向けバイナリを作成する | ||
## Ubuntu 24.04 (x86_64) 向けバイナリを作成する | ||
|
||
build ディレクトリ以下で `python3 run.py ubuntu-22.04_x86_64` と打つことで Zakuro の Ubuntu 22.04 x86_64 向けバイナリが生成されます。 | ||
build ディレクトリ以下で `python3 run.py ubuntu-24.04_x86_64` と打つことで Zakuro の Ubuntu 24.04 x86_64 向けバイナリが生成されます。 | ||
|
||
```shell | ||
$ python3 run.py ubuntu-22.04_x86_64 | ||
$ python3 run.py ubuntu-24.04_x86_64 | ||
``` | ||
|
||
うまくいかない場合は `rm -rf _source _build _install && python3 run.py ubuntu-22.04_x86_64` を試してみてください。 | ||
うまくいかない場合は `rm -rf _source _build _install && python3 run.py ubuntu-24.04_x86_64` を試してみてください。 | ||
|