Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add: Install instruction for Fedora/RHEL #112

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Running the hwtests suite requires installing an additional dependency (`libpng`
* [Windows](#windows)
* [macOS](#macos)
* [Debian/Ubuntu](#debianubuntu)
* [Fedora/RHEL](#fedorarhel)

---
## Windows
Expand Down Expand Up @@ -118,3 +119,30 @@ $ sudo apt install qt5-default libqt5x11extras5-dev libxrandr-dev libxv-dev liba
```
$ sudo apt install libpng-dev
```

## Fedora/RHEL

### Basic steps

*Open a terminal and do the following:*

\- Install build dependencies
```
$ sudo dnf groupinstall 'Development Tools'
$ sudo dnf install git python3-scons zlibrary
```

### Qt-specific steps

\- Install Qt5 development packages, plus Gambatte-Speedrun dependencies that aren't build with Qt5, then add the Qt5 development tools to PATH:
```
sudo dnf install qt5-qtbase qt5-qtx11extras-devel libXrandr-devel libXv-devel alsa-lib-devel
export PATH="$PATH:/usr/lib64/qt5/bin"
```

### Testrunner-specific steps

\- Install the `libpng-devel` package:
```
$ sudo dnf install libpng-devel
```