Dolphin, the GameCube and Wii emulator - Forums
Ubuntu install not working - Printable Version

+- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org)
+-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support)
+--- Forum: Support (https://forums.dolphin-emu.org/Forum-support)
+--- Thread: Ubuntu install not working (/Thread-ubuntu-install-not-working)



Ubuntu install not working - PsychicMonkey - 11-02-2016

So installing to my laptop doesn't result with a usable app, entering 'dolphin-emu' into terminal just sends back a command not found error.

I can't think of any reason this wouldn't work except for 2 errors I got during 'make'.

make[2]: *** [Source/Core/AudioCommon/CMakeFiles/audiocommon.dir/AudioCommon.cpp.o] Error 1
make[1]: *** [Source/Core/AudioCommon/CMakeFiles/audiocommon.dir/all] Error 2
make: *** [all] Error 2

Could this cause the install to break, ending up with no accessible exec file?

Thanks in advance


RE: Ubuntu install not working - Anti-Ultimate - 11-02-2016

Did you execute make? Or are you following the instructions and are using cmake?


RE: Ubuntu install not working - PsychicMonkey - 11-03-2016

(11-02-2016, 07:14 PM)Anti-Ultimate Wrote: Did you execute make? Or are you following the instructions and are using cmake?

I used cmake first then used make and finally sudo make install as per the dolphin wiki instructions for building on linux. The link in your signature won't work either since I'm running 14.04 LTS and that post mentioned that anything below 16 wouldn't work


RE: Ubuntu install not working - leolam - 11-04-2016

You need to fix whatever causes compilation to fail. Hint: the error to fix is typically the first one you see, so before the message from make which tells you nothing useful.

It's perfectly normal that you get command not found for dolphin-emu, because it isn't installed. It isn't installed because Dolphin was not even built in the first place.


RE: Ubuntu install not working - PsychicMonkey - 11-04-2016

(11-04-2016, 05:58 AM)leolam Wrote: You need to fix whatever causes compilation to fail. Hint: the error to fix is typically the first one you see, so before the message from make which tells you nothing useful.

It's perfectly normal that you get command not found for dolphin-emu, because it isn't installed. It isn't installed because Dolphin was not even built in the first place.

The error I posted was the only error that occurred during the whole process