mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 11:15:34 +08:00
note on rquired ubuntu packages + run apt update
in linux workflows
This commit is contained in:
parent
989bbf8ed4
commit
f822127ddf
1
.github/workflows/emu-build-all-linux.yml
vendored
1
.github/workflows/emu-build-all-linux.yml
vendored
@ -82,6 +82,7 @@ jobs:
|
|||||||
- name: Install required packages
|
- name: Install required packages
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
sudo apt update -y
|
||||||
sudo apt install -y coreutils # echo, printf, etc...
|
sudo apt install -y coreutils # echo, printf, etc...
|
||||||
sudo apt install -y build-essential
|
sudo apt install -y build-essential
|
||||||
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
||||||
|
1
.github/workflows/emu-deps-linux.yml
vendored
1
.github/workflows/emu-deps-linux.yml
vendored
@ -61,6 +61,7 @@ jobs:
|
|||||||
- name: Install required packages
|
- name: Install required packages
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
sudo apt update -y
|
||||||
sudo apt install -y coreutils # echo, printf, etc...
|
sudo apt install -y coreutils # echo, printf, etc...
|
||||||
sudo apt install -y build-essential
|
sudo apt install -y build-essential
|
||||||
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
||||||
|
15
README.md
15
README.md
@ -94,6 +94,21 @@ You can also find instructions here in [README.release.md](./post_build/README.r
|
|||||||
### For Linux:
|
### For Linux:
|
||||||
|
|
||||||
* Ubuntu 22.04 LTS: https://ubuntu.com/download/desktop
|
* Ubuntu 22.04 LTS: https://ubuntu.com/download/desktop
|
||||||
|
* Ubuntu required packages:
|
||||||
|
```shell
|
||||||
|
sudo apt update -y
|
||||||
|
sudo apt install -y coreutils # echo, printf, etc...
|
||||||
|
sudo apt install -y build-essential
|
||||||
|
sudo apt install -y gcc-multilib # needed for 32-bit builds
|
||||||
|
sudo apt install -y g++-multilib
|
||||||
|
sudo apt install -y libglx-dev # needed for overlay build (header files such as GL/glx.h)
|
||||||
|
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
|
||||||
|
```
|
||||||
|
*(Optional)* Additional packages
|
||||||
|
```shell
|
||||||
|
sudo apt install -y clang # clang compiler
|
||||||
|
sudo apt install -y binutils # contains the tool 'readelf' mainly, and other usefull binary stuff
|
||||||
|
```
|
||||||
* Python 3.10 or above
|
* Python 3.10 or above
|
||||||
```shell
|
```shell
|
||||||
sudo add-apt-repository ppa:deadsnakes/ppa -y
|
sudo add-apt-repository ppa:deadsnakes/ppa -y
|
||||||
|
Loading…
Reference in New Issue
Block a user