maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Games (https://talk.maemo.org/forumdisplay.php?f=12)
-   -   PPSSPP A portable PSP emulatorFree & 100% Open Source (https://talk.maemo.org/showthread.php?t=87812)

vakkov 2013-01-19 22:09

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
I forgot about this thread - this file should be working (I don't have an n9 to test on). The main Qt guy in this project (xsacha) said he had tested it on his n9 and the problem was that n9's gpu is slow. Hopefully when they implement the arm jit it would get better. This .deb is built by me with qt creator and again - i am 99% sure it should work. Please test :) Download: http://www.mediafire.com/?q36f2ih61osh856

mdbxh 2013-01-20 06:09

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
1 Attachment(s)
Quote:

Originally Posted by vakkov (Post 1315979)
I forgot about this thread - this file should be working (I don't have an n9 to test on). The main Qt guy in this project (xsacha) said he had tested it on his n9 and the problem was that n9's gpu is slow. Hopefully when they implement the arm jit it would get better. This .deb is built by me with qt creator and again - i am 99% sure it should work. Please test :) Download: http://www.mediafire.com/?q36f2ih61osh856

:confused::confused::confused::confused::confused:
work,but have some isuess

Akkumaru 2013-01-20 06:17

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Quote:

Originally Posted by mdbxh (Post 1316020)
:confused::confused::confused::confused::confused:
work,but have some isuess

MINECRAFT HAS INVADED :D
JK

Thanks for trying it out for the rest of us :)

ThraxZzz 2013-01-20 08:10

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Cant install....

recluse 2013-01-20 09:08

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Hey guys,

I believe this is the installable .deb you are looking for ;)

http://www.mediafire.com/?vaxq4ezxlr8ticw

Edit: I put the assets in there as well as a .desktop launchable.

mdbxh 2013-01-20 11:20

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Quote:

Originally Posted by recluse (Post 1316038)
Hey guys,

I believe this is the installable .deb you are looking for ;)

http://www.mediafire.com/?vaxq4ezxlr8ticw

Edit: I put the assets in there as well as a .desktop launchable.

the same #22

vakkov 2013-01-20 11:33

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Oh, sh*t. I have forgotten to put the assets.. the .deb is useless. The assets folder should be in the same directory as the executable and the libs should be in a folder called libs ...

recluse 2013-01-21 03:25

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
The libs aren't used.

MINKIN2 2013-01-31 19:17

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
6.1 has now been released with the preliminary ARM JIT

AapoRantalainen 2013-02-04 10:39

Re: PPSSPP A portable PSP emulatorFree & 100% Open Source
 
Seems ppsspp can't be compiled with gcc-4.2. It uses "-std=c++0x" / "-std=c++11", e.g. code uses 'auto iter' which is introduced in gcc-4.4.

---
So using gcc-4.7.
1) Compile (or package) cmake (2.8.9) inside scrathbox. Install.

2) Fetch code for ppsspp (seems this can't be done inside sb)
Code:

git clone  https://github.com/hrydgard/ppsspp.git
cd ppsspp
git submodule update --init

3) patch
file: Common/Log.h
Code:

#if !defined(_WIN32) && !defined(PANDORA)
+//ucontext.h will be then skipped
+#define _SYS_UCONTEXT_H 1
#include <signal.h>
#endif

(Reason: some files includes <signal.h> (currently first time is Common/Log.h). Signal.h includes /usr/include/sys/ucontext.h which uses names R0...R10 (registers) which then clashes with names in Common/ArmEmitter.h.
This hack/patch skips loading of sys/ucontext.h (and we seriously hope nothing else will not broke) [https://github.com/hrydgard/ppsspp/issues/347])

4) compile (inside sb)
Code:

mkdir build
cd build
cmake .. -DARM:boolean=ON -DX86:boolean=OFF -DUSING_GLES2:boolean=ON -DHEADLESS:boolean=OFF
make

5) copy to the device
file: build/PPSSPPSDL
directory: build/assets/

I have compiled version git-eb97a3bd15e021789f81bfe5c3eb3be1bb5b7e90 (but haven't tested to run it at all).


All times are GMT. The time now is 09:03.

vBulletin® Version 3.8.8