EmuNewz Network
Linux - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: Official Boards for Emunews Affiliated Emu Projects (https://www.emunewz.net/forum/forumdisplay.php?fid=47)
+--- Forum: Official RPCS3 Forum [archive] (https://www.emunewz.net/forum/forumdisplay.php?fid=172)
+---- Forum: RPCS3 - Support & Issue Reporting (https://www.emunewz.net/forum/forumdisplay.php?fid=163)
+---- Thread: Linux (/showthread.php?tid=159071)

Pages: 1 2


Linux - Patrikb56 - 03-16-2014

Hi, I would to now how to build rpcs3 under linux. Cann someone write me here how to do it? Sorry for my bad english.


RE: Linux build - Patrikb56 - 03-30-2014

Really anybody doesn't know how to build RPCS3 under linux? It's the only thing what holds me at Windows.


RE: Linux - Bigpet - 03-30-2014

Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).


RE: Linux - Patrikb56 - 03-30-2014

(03-30-2014, 06:23 PM)Bigpet Wrote: Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).

Ok. I used cmake. It was ok. But when I used make, there were errors and it didn't compile. Did I do everything good? Or can somebody write some procedure how to compile it right?


RE: Linux - derpf - 03-31-2014

(03-30-2014, 10:50 PM)Patrikb56 Wrote:
(03-30-2014, 06:23 PM)Bigpet Wrote: Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).

Ok. I used cmake. It was ok. But when I used make, there were errors and it didn't compile. Did I do everything good? Or can somebody write some procedure how to compile it right?

You need to have the dependencies (wxWidgets and GLEW, can't remember if there's anything else) and pull the latest code from master. If you get compiler errors, pastebin them.


RE: Linux - Patrikb56 - 03-31-2014

(03-31-2014, 09:24 AM)derpf Wrote:
(03-30-2014, 10:50 PM)Patrikb56 Wrote:
(03-30-2014, 06:23 PM)Bigpet Wrote: Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).

Ok. I used cmake. It was ok. But when I used make, there were errors and it didn't compile. Did I do everything good? Or can somebody write some procedure how to compile it right?

You need to have the dependencies (wxWidgets and GLEW, can't remember if there's anything else) and pull the latest code from master. If you get compiler errors, pastebin them.

Errors after make command are here: http://pastebin.com/raFiJ6Ma


RE: Linux - BageDevimo - 03-31-2014

(03-31-2014, 11:23 AM)Patrikb56 Wrote:
(03-31-2014, 09:24 AM)derpf Wrote:
(03-30-2014, 10:50 PM)Patrikb56 Wrote:
(03-30-2014, 06:23 PM)Bigpet Wrote: Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).

Ok. I used cmake. It was ok. But when I used make, there were errors and it didn't compile. Did I do everything good? Or can somebody write some procedure how to compile it right?

You need to have the dependencies (wxWidgets and GLEW, can't remember if there's anything else) and pull the latest code from master. If you get compiler errors, pastebin them.

Errors after make command are here: http://pastebin.com/raFiJ6Ma

AlexAltea is right, you need wxWidgets >= 3.0, and make sure you install libglew-dev

You'll probably have to compile wxWidgets yourself, which is a whole nother bag of worms.

When you do eventually get it compiling, it'll crash Smile


RE: Linux - Patrikb56 - 03-31-2014

(03-31-2014, 01:00 PM)BageDevimo Wrote:
(03-31-2014, 11:23 AM)Patrikb56 Wrote:
(03-31-2014, 09:24 AM)derpf Wrote:
(03-30-2014, 10:50 PM)Patrikb56 Wrote:
(03-30-2014, 06:23 PM)Bigpet Wrote: Just build it with cmake. Don't expect it to work flawlessly, there's some bugs left to get it running decently (BageDev among others is working on getting that fixed).

Ok. I used cmake. It was ok. But when I used make, there were errors and it didn't compile. Did I do everything good? Or can somebody write some procedure how to compile it right?

You need to have the dependencies (wxWidgets and GLEW, can't remember if there's anything else) and pull the latest code from master. If you get compiler errors, pastebin them.

Errors after make command are here: http://pastebin.com/raFiJ6Ma

AlexAltea is right, you need wxWidgets >= 3.0, and make sure you install libglew-dev

You'll probably have to compile wxWidgets yourself, which is a whole nother bag of worms.

When you do eventually get it compiling, it'll crash Smile

Ok. Now it's doing this: http://pastebin.com/HYwuyuwD
Is it normal?


RE: Linux - mushroom - 03-31-2014

Quote:Ok. Now it's doing this: http://pastebin.com/HYwuyuwD
Is it normal?

Try using the -fpermissive flag in the settings, if GNU GCC 4.7.

Also, try this reading this for that repetitive message "declared here, later in the translation unit."

http://gcc.gnu.org/gcc-4.7/porting_to.html


RE: Linux - BageDevimo - 04-01-2014

(03-31-2014, 07:39 PM)mushroom Wrote:
Quote:Ok. Now it's doing this: http://pastebin.com/HYwuyuwD
Is it normal?

Try using the -fpermissive flag in the settings, if GNU GCC 4.7.

Also, try this reading this for that repetitive message "declared here, later in the translation unit."

http://gcc.gnu.org/gcc-4.7/porting_to.html

If you're building using the cmake, it _should_ have -fpermissive, I think.