Last active
June 21, 2020 16:33
-
-
Save bmaupin/a00a2dcd9e075999e6a9 to your computer and use it in GitHub Desktop.
Build Reicast emulator on Ubuntu/Debian
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
# NOTE: These instructions are old and may be out of date. A better alternative to compiling Reicast manually may be to use RetroArch with the Flycast core (https://www.retroarch.com/) | |
# Install prerequisites | |
sudo apt-get -y install build-essential libasound2 libasound2-dev libegl1-mesa-dev libgl1-mesa-dev libgles2-mesa-dev mesa-common-dev | |
# Build Reicast | |
git clone https://github.com/reicast/reicast-emulator.git | |
cd reicast-emulator/shell/linux | |
make | |
# Run Reicast | |
mkdir -p ~/.local/share/reicast/data/ | |
cp ../android/assets/buttons.png ~/.local/share/reicast/data/ | |
cp /path/to/bios/dc_boot.bin ~/.local/share/reicast/data/ | |
cp /path/to/bios/dc_flash.bin ~/.local/share/reicast/data/ | |
./reicast.elf | |
# To open a ROM | |
./reicast.elf /path/to/rom.cdi | |
# Key bindings | |
# Arrow keys: arrow keys | |
# A: v | |
# Start: Enter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They are only 2 different lines.
Change
cd reicast-emulator/shell/linux
to
cd reicast-emulator/reicast/linux
and
cp ../android/assets/buttons.png ~/.local/share/reicast/data/
to
cp ../android-studio/reicast/src/main/assets/buttons.png ~/.local/share/reicast/data/
Thanks again,
compiling was the only way for me, because installing reicast via snap didn't work.
Cheers.