
The archive should be updated daily as long as my computer is powered on :)
You can find the build archive Here.
sudo yum install svn SDL* gtk2-devel glade-devel soundtouch-devel mesa-libOSMesa-devel agg-devel gtkglext-devel lua-devel intltoolNext off we'll want to download the source from Desmume's SVN repository (one command):
svn co https://desmume.svn.sourceforge.net/svnroot/desmume/trunk/desmume desmumeNow lets cd into the Desmume directory, which contains the source code (one command):
cd desmume
./autogen.sh
CXXFLAGS='-O2 -march=native -mfpmath=sse' ./configure --prefix=/usr
makeOnce the make finishes you'll want to install your baby into it's final resting place. (one command):
sudo make installAnd there you have it. A fresh steaming pile of Nintendo DS emulator. Load up a game ROM (one you legally own, of course) and give it a shot!
sudo yum groupinstall "Development Tools"
sudo yum install git cmake-fedora gcc-c++ wxGTK-devel SDL-devel Cg bluez-libs-devel readline-devel alsa-lib-devel pulseaudio-libs-devel libao-devel glib2-devel openal-soft-devel ffmpeg-devel glew-devel lzo-devel portaudio-devel pango-devel libusb-devel miniupnpc-devel polarssl-devel SFML-devel SDL2-devel SOIL-devel miniupnpc-devel polarssl-devel soundtouch-devel wxGTK3-devel
mkdir ~/SourceNow we will download the source from google code's git server (1 total command).
cd ~/Source
git clone https://github.com/dolphin-emu/dolphin.git dolphin-emuTime to dive into the source code directory (1 total command).
cd dolphin-emuOnce inside the dolphin-emu directory you'll want to make another directory called build and enter it (2 total commands).
mkdir buildIt is now time to make the magic happen through the wonder of compilation (2 total commands).
cd build
cmake .. -DCMAKE_INSTALL_PREFIX:PATH=/usr
make
sudo make install
![]() |
Dolphin-emu 4.0-xxx git build on Fedora 20 |