![]() |
2013-05-02
, 18:06
|
|
Posts: 770 |
Thanked: 558 times |
Joined on Mar 2010
@ Abidjan
|
#2
|
![]() |
2013-05-02
, 18:29
|
|
Posts: 1,974 |
Thanked: 1,834 times |
Joined on Mar 2013
@ india
|
#3
|
![]() |
2013-05-02
, 20:30
|
Posts: 1,523 |
Thanked: 1,997 times |
Joined on Jul 2011
@ not your mom's FOSS basement
|
#4
|
![]() |
2013-05-02
, 21:10
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#5
|
![]() |
2013-05-02
, 21:12
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#6
|
The Following 4 Users Say Thank You to woody14619 For This Useful Post: | ||
![]() |
2013-05-03
, 10:53
|
Posts: 1,808 |
Thanked: 4,272 times |
Joined on Feb 2011
@ Germany
|
#7
|
![]() |
2013-05-04
, 18:39
|
Posts: 439 |
Thanked: 192 times |
Joined on Oct 2009
@ spain-aragon-zaragoza
|
#8
|
![]() |
2013-05-04
, 18:50
|
Posts: 1,523 |
Thanked: 1,997 times |
Joined on Jul 2011
@ not your mom's FOSS basement
|
#9
|
The Following User Says Thank You to don_falcone For This Useful Post: | ||
![]() |
2013-05-04
, 19:30
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#10
|
:P Feel free to. You guys still think that because nearly everything is possible, everything should be done (or makes sense).
..........
![]() |
Tags |
copy-pasta, dolphin n900, emulator n900, good luck noobs, wiii n900 |
Thread Tools | |
|
Dolphin has recently gained support for ARM in the master branch. Let's see how to make it.
Setting up to Build
First, make sure you have the correct dependencies installed. For example, if you are using Ubuntu, use apt-get as follows:
sudo apt-get install make cmake git g++ libsdl1.2-dev libxrandr-dev libxext-dev libao-dev libasound2-dev libpulse-dev libbluetooth-dev libreadline-gplv2-dev libavcodec-dev libavformat-dev libswscale-dev
If you want to have a GUI, then install run this:
sudo apt-get install make cmake git g++ libgtk2.0-dev libsdl1.2-dev libxrandr-dev libxext-dev libao-dev libasound2-dev libpulse-dev libbluetooth-dev libreadline-gplv2-dev libavcodec-dev libavformat-dev libswscale-dev
If you run a distribution without aptitude, see the build dependencies below for a list of packages you will need to install.
Get a local copy of the dolphin-emu repository:
git clone https://code.google.com/p/dolphin-emu/ dolphin-emu
Change to the directory created:
cd dolphin-emu
Later, if you wish to update your local copy:
git pull origin
Building
Create a build subdirectory, and change into it.
mkdir Build && cd Build
Configure the build:
cmake -DUSE_GLES=True -DDISABLE_WX=True ..
If you are building with the GUI, configure it this way:
cmake -DUSE_GLES=True ..
From here build and install in the standard make way:
make
I would personally recommend building multi-threaded:
make -j5
Be warned, if you're building with a GUI, it is going to take quite a bit of time to build.
https://code.google.com/p/dolphin-emu/wiki/ARMBuild