User Tools

Site Tools


proton:raspi_setup

This is an old revision of the document!


Compiling Proton and its examples on the Raspberry Pi with GL ES

As a base, I started with RetroPi on a Raspberry 3. I should try it with a vanilla Raspbian Stretch install and see if that works too.

First install Proton and compile its RTPack utility:

I ssh'ed in and did:

cd ~
git clone https://github.com/SethRobinson/proton.git
 
//Build proton's RTPack tool
cd ~/proton/RTPack/linux
sh linux_compile.sh

Now let's compile and run RTBareBones:

cd ~/proton/RTBareBones/linux
sh linux_compile.sh
cd ../bin
./RTBareBones

If that worked, enjoy the spinning triangle and text stretching!

Now let's do RTSimpleApp, same thing but it needs SDL2_mixer for its audio, so let's get that installed:

sudo apt-get libsdl2-mixer-dev

Great. Now we compile and run like before, but we're adding a step - compiling media with the RTPack utility.

cd ~/RTSimpleApp/linux
sh linux_compile.sh
cd ../media
sh update_media.sh
cd ../bin
./RTSimpleApp

If that worked, enjoy the app. If it didn't… off to the forums and yell at Seth!

proton/raspi_setup.1532769874.txt.gz · Last modified: 2018/07/28 09:24 by seth