Setting up Raspbery Pi to compile Proton SDK examples in X11 via SDL2 and the OpenGL experimental driver

These steps are what I use to compile stuff by copying things from my Windows computer. A normal user would probably just grab the svn tree and run .sh files.

sudo apt-get -y install xcompmgr libgl1-mesa-dri && sudo apt-get -y install libalut0 libalut-dev && sudo apt-get -y install mesa-utils

sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev
cd ~ 
wget https://www.libsdl.org/release/SDL2-2.0.4.tar.gz 
tar zxvf SDL2-2.0.4.tar.gz 
cd SDL2-2.0.4 && mkdir build && cd build 
../configure --disable-pulseaudio --disable-esd --disable-video-mir --disable-video-wayland
make -j 5 
sudo make install 

Step 2: Proton stuff

The last step of the build copies the rtbarebones binary to /RTBareBones/bin (as that's where the media is), so go to that dir and run “./rtbarebones” and it should work.