• Login
  • Register
  • Dolphin Forums
  • Home
  • FAQ
  • Download
  • Wiki
  • Code


Dolphin, the GameCube and Wii emulator - Forums › Dolphin Emulator Discussion and Support › Support v
« Previous 1 … 587 588 589 590 591 … 1204 Next »

Dolphin 4.0 on Ubuntu 12.04
View New Posts | View Today's Posts

Pages (3): 1 2 3 Next »
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode
Dolphin 4.0 on Ubuntu 12.04
09-23-2013, 07:28 PM
#1
Crypdos Offline
Junior Member
**
Posts: 11
Threads: 2
Joined: Sep 2013
Hello

I'm trying desperately to install 4.0 on my Ubuntu 64bit 12.04 installation. However it seems that so far only 13.04 is supported. Will there be a 12.04 release soon, or is there any other way to get this working?
Find
Reply
09-23-2013, 10:16 PM
#2
neobrain Offline
"Wow, I made my code 1000x faster! That means I can make it 2048x slower now!"
**********
Developers (Some Administrators and Super Moderators)
Posts: 3,208
Threads: 50
Joined: Jun 2009
You can follow the Linux build instructions to compile Dolphin yourself.
My blog
Me on Twitter
My wishlist on Amazon.de
Find
Reply
09-24-2013, 12:11 AM (This post was last modified: 09-24-2013, 12:37 AM by Crypdos.)
#3
Crypdos Offline
Junior Member
**
Posts: 11
Threads: 2
Joined: Sep 2013
(09-23-2013, 10:16 PM)neobrain Wrote: You can follow the Linux build instructions to compile Dolphin yourself.

Thanks for the reply. I must admit, I have next to no experience with cmake or building stuff.I'm getting some errors during cmake and am stuck at that point ... hope you can help me out.

http://pastebin.com/5A0Mw1Jj

(09-23-2013, 10:16 PM)neobrain Wrote: You can follow the Linux build instructions to compile Dolphin yourself.

Thanks for the reply. I must admit, I have next to no experience with cmake or building stuff.I'm getting some errors during cmake and am stuck at that point ... hope you can help me out.

http://pastebin.com/5A0Mw1Jj
Find
Reply
09-24-2013, 06:25 AM
#4
Delayline Offline
Member
***
Posts: 55
Threads: 2
Joined: Oct 2011
(09-24-2013, 12:11 AM)Crypdos Wrote:
(09-23-2013, 10:16 PM)neobrain Wrote: You can follow the Linux build instructions to compile Dolphin yourself.

Thanks for the reply. I must admit, I have next to no experience with cmake or building stuff.I'm getting some errors during cmake and am stuck at that point ... hope you can help me out.

http://pastebin.com/5A0Mw1Jj

(09-23-2013, 10:16 PM)neobrain Wrote: You can follow the Linux build instructions to compile Dolphin yourself.

Thanks for the reply. I must admit, I have next to no experience with cmake or building stuff.I'm getting some errors during cmake and am stuck at that point ... hope you can help me out.

http://pastebin.com/5A0Mw1Jj
According to your terminal output you must install these libs before attempt to compile

openal, portaudio, sdl 2.0, sfml, miniupnp, polarssl and wxwidgets 2.9

Also there's a problem with gettext that used for building the po files
[color=#006600]Processor:[/color] AMD Phenom II 1090T @ 3.4GHz
[color=#ff0000]Graphics:[/color] Asus ATI EAH5870v2 1GiB
[color=#333333]Motherboard:[/color] Asus Crosshair IV Extreme
[color=#006666]RAM:[/color] 8GiB Corsair 1333MHz
[color=#009900]Operating System:[/color] openSUSE Linux 13.2 x86_64 GCC 4.8.3
Find
Reply
09-24-2013, 02:57 PM
#5
Shonumi Offline
Linux User/Tester
**********
Administrators
Posts: 6,526
Threads: 55
Joined: Dec 2011
(09-24-2013, 06:25 AM)Delayline Wrote: According to your terminal output you must install these libs before attempt to compile

openal, portaudio, sdl 2.0, sfml, miniupnp, polarssl and wxwidgets 2.9

Some of those are actually optional, others are built statically if not found or if a required version is not found. None of them is the cause of the issue. The actual error, as you pointed out, is with gettext, or rather the cmake module for gettext.

My gut reaction is to update cmake. Which version are you using? Mine is 2.8.10, and it runs without issue. Type in "cmake --version" into a terminal to see which version you have.
Website Find
Reply
09-24-2013, 04:28 PM
#6
dii Offline
Junior Member
**
Posts: 21
Threads: 1
Joined: Sep 2013
I've recently compiled 4.0 on Mint 13 (is based on buntu 12.04). If you want to do the same, you'll need to install GCC 4.7, the GCC in 12.04 is too old.

This means you will also have to compile GCC.

Be warned, I did all that, and got Dolphin built, but it still doesn't work (no games launch properly, all just show a black screen)... it might be smart to wait until the first bugfix release.
Find
Reply
09-24-2013, 04:44 PM
#7
Shonumi Offline
Linux User/Tester
**********
Administrators
Posts: 6,526
Threads: 55
Joined: Dec 2011
The OP's errors aren't related to GCC though. In fact, the OP hasn't even begun compiling the code yet :p

Fwiw, the black screen + needing GCC 4.7 is probably some issue with Ubuntu doing things they're not supposed to do. Dolphin 4.0 compiles just fine with 4.5.2 (taking into account the need to add arguments to compile C++0x). On GCC 4.8.1, I have no issues either in compiling or running Dolphin.
Website Find
Reply
09-24-2013, 11:09 PM (This post was last modified: 09-25-2013, 12:48 AM by Crypdos.)
#8
Crypdos Offline
Junior Member
**
Posts: 11
Threads: 2
Joined: Sep 2013
(09-24-2013, 02:57 PM)Shonumi Wrote:
(09-24-2013, 06:25 AM)Delayline Wrote: According to your terminal output you must install these libs before attempt to compile

openal, portaudio, sdl 2.0, sfml, miniupnp, polarssl and wxwidgets 2.9

Some of those are actually optional, others are built statically if not found or if a required version is not found. None of them is the cause of the issue. The actual error, as you pointed out, is with gettext, or rather the cmake module for gettext.

My gut reaction is to update cmake. Which version are you using? Mine is 2.8.10, and it runs without issue. Type in "cmake --version" into a terminal to see which version you have.
I got it working!

I updated GCC and G++ to 4.8.1, then updated cmake to 2.8.11.2 ( fortunately this was actually pretty easy). Cmake then completed with no errors.
Then I tried to make & make install. I got an error at 92% regarding libGL.so, it turns out that this OpenGL lib was wrongly linked. Fixed the link and then it actually installed! Immediately tried running it, and it was working on the first attempt, awesome Smile

Thanks for your help everyone, I think the main problem was the old version of cmake. Maybe this should be added to the Linux instructions (req cmake> 2.8.7?). If anyone has the same problem and needs more specific info, tell me.
Find
Reply
10-04-2013, 09:42 AM
#9
Chisk1n
Unregistered
 
I solved the problem on ubuntu 12.04 with cmake 2.8.11.2 but for me it was not easy to update, i download cURL-7.32.0, libarchive-3.1.2 and expat-2.1.0 and curl library, spent a lot of time fixing all the problems
Reply
10-04-2013, 06:18 PM (This post was last modified: 10-04-2013, 06:18 PM by neobrain.)
#10
neobrain Offline
"Wow, I made my code 1000x faster! That means I can make it 2048x slower now!"
**********
Developers (Some Administrators and Super Moderators)
Posts: 3,208
Threads: 50
Joined: Jun 2009
None of the libraries that you downloaded in addition to cmake are even requirements for Dolphin.. :|
Anyway, glad to see your issue resolved as well.
My blog
Me on Twitter
My wishlist on Amazon.de
Find
Reply
« Next Oldest | Next Newest »
Pages (3): 1 2 3 Next »


  • View a Printable Version
Forum Jump:


Users browsing this thread: 1 Guest(s)



Powered By MyBB | Theme by Fragma