Skip to content

Instantly share code, notes, and snippets.

@humbertodias
Last active September 8, 2020 08:38
Show Gist options
  • Save humbertodias/22639cc96e4ec7edc8aaeb1d739027a4 to your computer and use it in GitHub Desktop.
Save humbertodias/22639cc96e4ec7edc8aaeb1d739027a4 to your computer and use it in GitHub Desktop.
retroarch command line for libretro
# Linux
sudo snap install retroarch
cd /tmp
# download core
wget http://buildbot.libretro.com/assets/cores/Cannonball/CannonBall.zip
unzip -o CannonBall.zip
cd CannonBall
wget http://buildbot.libretro.com/nightly/linux/x86_64/latest/cannonball_libretro.so.zip
unzip -o cannonball_libretro.so.zip
# download rom file outrun.zip and unzip
wget https://archive.org/download/arcade_outrun/outrun.zip
unzip -o outrun.zip
# Run
retroarch -v \
-L ./cannonball_libretro.so \
CannonBall.game
# Mac
# brew cask install retroarch
cd /tmp
# download core
wget http://buildbot.libretro.com/assets/cores/Cannonball/CannonBall.zip
unzip CannonBall.zip
cd CannonBall
wget http://buildbot.libretro.com/nightly/apple/osx/x86_64/latest/cannonball_libretro.dylib.zip
unzip cannonball_libretro.dylib.zip
# download rom file outrun.zip and unzip
wget https://archive.org/download/arcade_outrun/outrun.zip
unzip outrun.zip
# Run
/Applications/RetroArch.app/Contents/MacOS/RetroArch -v \
-L ./cannonball_libretro.dylib \
CannonBall.game
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment