Although I do not know what is wrong here, are you sure you have installed all dependencies?
According to the old Google Code Linux Build guide:
Also you don't need sudo with cmake.
Run the following commands:
When this has succeeded and you want to update Dolphin to the latest revision (not needed after the first install) run the following commands from within the "dolphin-emu" folder:
According to the old Google Code Linux Build guide:
Code:
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-devAlso you don't need sudo with cmake.
Run the following commands:
Code:
git clone https://code.google.com/p/dolphin-emu/ dolphin-emu
cd dolphin-emu
mkdir Build && cd Build
cmake ..
make
sudo make installWhen this has succeeded and you want to update Dolphin to the latest revision (not needed after the first install) run the following commands from within the "dolphin-emu" folder:
Code:
git pull origin
cd Build
cmake ..
make
sudo make install
