Post Reply 
 
Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Mac OS X - PPSSPP Application Bundle Builds
08-28-2014, 01:16 AM
Post: #16
Brick RE: Mac OS X - PPSSPP Application Bundle Builds
I just wanted to let you all know that I'll also be hosting builds of PPSSPP until angelxwind's builds get back online. You can find them at [http://]consoleemu[dot]com. (I'm new so I'm pretty sure I can't post links yet.)
Find all posts by this user
Quote this message in a reply
08-28-2014, 01:23 AM (This post was last modified: 08-28-2014 01:30 AM by brujo55.)
Post: #17
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 01:16 AM)ConsoleEmu Wrote:  I just wanted to let you all know that I'll also be hosting builds of PPSSPP until angelxwind's builds get back online. You can find them at [http://]consoleemu[dot]com. (I'm new so I'm pretty sure I can't post links yet.)

Any chance for iPhone build?
Find all posts by this user
Quote this message in a reply
08-28-2014, 01:41 AM
Post: #18
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 01:16 AM)ConsoleEmu Wrote:  I just wanted to let you all know that I'll also be hosting builds of PPSSPP until angelxwind's builds get back online. You can find them at [http://]consoleemu[dot]com. (I'm new so I'm pretty sure I can't post links yet.)

I was actually thinking about the same, but the death of angelXwind got me thinking about this community: see: iOS builds: Stanton
My dedicated server isn't even provisioned yet so I'm definitely not ready to release, but I'm still contemplating the clientele that can't even understand trying to help the community at large.
Find all posts by this user
Quote this message in a reply
08-28-2014, 01:46 AM
Post: #19
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 01:23 AM)brujo55 Wrote:  Any chance for iPhone build?

I almost got a complete iOS build. It was being fussy about code signing, so Apple might make me buy a Developer's License in order to build PPSSPP for iOS.
Find all posts by this user
Quote this message in a reply
08-28-2014, 02:20 AM (This post was last modified: 08-28-2014 02:21 AM by brujo55.)
Post: #20
RE: Mac OS X - PPSSPP Application Bundle Builds
If you can compile PPSSPP build,i only need the PPSSPP.app. No needed a signed ipa

Drag in phone /Aplications then set recursive permisión 1000/1000

No need to signing for install in iPhone whit jalibreak.
Find all posts by this user
Quote this message in a reply
08-28-2014, 02:34 AM
Post: #21
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 02:20 AM)brujo55 Wrote:  If you can compile PPSSPP build,i only need the PPSSPP.app. No needed a signed ipa
Drag in phone /Aplications then set recursive permisión 1000/1000
No need to signing for install in iPhone whit jalibreak.

I had to to a quick edit to absolute paths: ./ios/ios.toolchain.cmake
CMAKE_FORCE_C_COMPILER (gcc gcc)
CMAKE_FORCE_CXX_COMPILER (g++ g++)
to
CMAKE_FORCE_C_COMPILER (/usr/bin/gcc gcc)
CMAKE_FORCE_CXX_COMPILER (/usr/bin/g++ g++)

But I'm also in the iOS developer program, so don't know about certificates on compiling, which might be required on XCode.
Find all posts by this user
Quote this message in a reply
08-28-2014, 02:48 AM (This post was last modified: 08-28-2014 03:14 AM by brujo55.)
Post: #22
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 02:34 AM)Stanton Wrote:  
(08-28-2014 02:20 AM)brujo55 Wrote:  If you can compile PPSSPP build,i only need the PPSSPP.app. No needed a signed ipa
Drag in phone /Aplications then set recursive permisión 1000/1000
No need to signing for install in iPhone whit jalibreak.

I had to to a quick edit to absolute paths: ./ios/ios.toolchain.cmake
CMAKE_FORCE_C_COMPILER (gcc gcc)
CMAKE_FORCE_CXX_COMPILER (g++ g++)
to
CMAKE_FORCE_C_COMPILER (/usr/bin/gcc gcc)
CMAKE_FORCE_CXX_COMPILER (/usr/bin/g++ g++)

But I'm also in the iOS developer program, so don't know about certificates on compiling, which might be required on XCode.

No idea bro but your compiled app working perfect.

(08-28-2014 01:46 AM)ConsoleEmu Wrote:  
(08-28-2014 01:23 AM)brujo55 Wrote:  Any chance for iPhone build?

I almost got a complete iOS build. It was being fussy about code signing, so Apple might make me buy a Developer's License in order to build PPSSPP for iOS.

Usefull for you.

http://stackoverflow.com/questions/14536...er-license

(08-28-2014 02:34 AM)Stanton Wrote:  
(08-28-2014 02:20 AM)brujo55 Wrote:  If you can compile PPSSPP build,i only need the PPSSPP.app. No needed a signed ipa
Drag in phone /Aplications then set recursive permisión 1000/1000
No need to signing for install in iPhone whit jalibreak.

I had to to a quick edit to absolute paths: ./ios/ios.toolchain.cmake
CMAKE_FORCE_C_COMPILER (gcc gcc)
CMAKE_FORCE_CXX_COMPILER (g++ g++)
to
CMAKE_FORCE_C_COMPILER (/usr/bin/gcc gcc)
CMAKE_FORCE_CXX_COMPILER (/usr/bin/g++ g++)

But I'm also in the iOS developer program, so don't know about certificates on compiling, which might be required on XCode.

Open as an issue on github,maybe unknow,xsacha etc. Have a better solution.
https://github.com/hrydgard/ppsspp/issue...+is%3Aopen
Find all posts by this user
Quote this message in a reply
08-28-2014, 03:37 AM
Post: #23
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 02:48 AM)brujo55 Wrote:  Open as an issue on github,maybe unknow,xsacha etc. Have a better solution.
Honestly, when you get a response of can't find a compiler, that's not a bug but just your developer environment. Everyone who works on code even in the little bit that I do, understands that everyone is using different front-ends. This is just because I tried to use XCode solely which probably conflicts with someone else using Eclipse, VisualStudio, or another front-end.
Find all posts by this user
Quote this message in a reply
08-28-2014, 02:29 PM
Post: #24
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 03:37 AM)Stanton Wrote:  
(08-28-2014 02:48 AM)brujo55 Wrote:  Open as an issue on github,maybe unknow,xsacha etc. Have a better solution.
Honestly, when you get a response of can't find a compiler, that's not a bug but just your developer environment. Everyone who works on code even in the little bit that I do, understands that everyone is using different front-ends. This is just because I tried to use XCode solely which probably conflicts with someone else using Eclipse, VisualStudio, or another front-end.

It is true.

we need people like you to keep the project alive for iOS.
Find all posts by this user
Quote this message in a reply
08-28-2014, 11:43 PM
Post: #25
RE: Mac OS X - PPSSPP Application Bundle Builds
hi! i recently downloaded this and it runs awesomely on my macbook air. but i have a question about save data...
i was originally using the windows version of ppsspp, and i have the save data and all of other data that is saved in the memstick folder from a game (p3p) i had been playing on there. when i move it all to this computer/version of ppsspp, where would that all go to continue playing on that game data?
note: i tried putting the PPSSPP_STATE and SAVEDATA folders (with the files for my p3p save data) in the assets folder (PPSSPPDL/contents/MacOS/assets) and ran it, but it ignored the files.
if anybody could answer my question, that'd be really great (and thanks).
Find all posts by this user
Quote this message in a reply
08-29-2014, 06:17 AM (This post was last modified: 08-29-2014 06:17 AM by daughter.)
Post: #26
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 11:43 PM)ashcott Wrote:  hi! i recently downloaded this and it runs awesomely on my macbook air. but i have a question about save data...
i was originally using the windows version of ppsspp, and i have the save data and all of other data that is saved in the memstick folder from a game (p3p) i had been playing on there. when i move it all to this computer/version of ppsspp, where would that all go to continue playing on that game data?
note: i tried putting the PPSSPP_STATE and SAVEDATA folders (with the files for my p3p save data) in the assets folder (PPSSPPDL/contents/MacOS/assets) and ran it, but it ignored the files.
if anybody could answer my question, that'd be really great (and thanks).


Here's the answer you're looking for from post #9.

(07-30-2014 05:56 PM)kylez Wrote:  It's an invisible folder. It's inside your home folder. The same folder as de Download/Public/Documents/ folder.

Something like:

/Users/_thenameofyouruser_/.config/ppsspp/PSP
Find all posts by this user
Quote this message in a reply
08-29-2014, 02:56 PM (This post was last modified: 08-29-2014 02:59 PM by ray_chan.)
Post: #27
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-28-2014 11:43 PM)ashcott Wrote:  hi! i recently downloaded this and it runs awesomely on my macbook air. but i have a question about save data...
i was originally using the windows version of ppsspp, and i have the save data and all of other data that is saved in the memstick folder from a game (p3p) i had been playing on there. when i move it all to this computer/version of ppsspp, where would that all go to continue playing on that game data?
note: i tried putting the PPSSPP_STATE and SAVEDATA folders (with the files for my p3p save data) in the assets folder (PPSSPPDL/contents/MacOS/assets) and ran it, but it ignored the files.
if anybody could answer my question, that'd be really great (and thanks).
why do i get a bit laggy while playing gundam vs gundamSadSad
I am a macbook air user as well

(08-29-2014 02:56 PM)ray_chan Wrote:  
(08-28-2014 11:43 PM)ashcott Wrote:  hi! i recently downloaded this and it runs awesomely on my macbook air. but i have a question about save data...
i was originally using the windows version of ppsspp, and i have the save data and all of other data that is saved in the memstick folder from a game (p3p) i had been playing on there. when i move it all to this computer/version of ppsspp, where would that all go to continue playing on that game data?
note: i tried putting the PPSSPP_STATE and SAVEDATA folders (with the files for my p3p save data) in the assets folder (PPSSPPDL/contents/MacOS/assets) and ran it, but it ignored the files.
if anybody could answer my question, that'd be really great (and thanks).
why do i get a bit laggy while playing gundam vs gundamSadSad
I am a macbook air user as well
A game that run flawlessly on a handheld device should run perfectly on computer, is that something wrong with my computer???

Process: PPSSPPSDL [15468]
Path: /Users/USER/Desktop/*/PPSSPPSDL.app/Contents/MacOS/PPSSPPSDL
Identifier: PPSSPPSDL
Version: ???
Code Type: X86-64 (Native)
Parent Process: launchd [160]
Responsible: PPSSPPSDL [15468]
User ID: 501

Date/Time: 2014-08-30 01:59:09.577 +1000
OS Version: Mac OS X 10.9.4 (13E28)
Report Version: 11
Anonymous UUID: 851E2D96-7514-CAFA-B359-7508DA579F31


Crashed Thread: 0

Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000

Application Specific Information:
dyld: launch, loading dependent libraries

Dyld Error Message:
Library not loaded: @executable_path/../Frameworks/SDL.framework/Versions/A/SDL
Referenced from: /Users/USER/Desktop/*/PPSSPPSDL.app/Contents/MacOS/PPSSPPSDL
Reason: image not found

Binary Images:
0x7fff6092f000 - 0x7fff60962817 dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld

Model: MacBookAir6,2, BootROM MBA61.0099.B12, 2 processors, Intel Core i5, 1.3 GHz, 4 GB, SMC 2.13f9
Graphics: Intel HD Graphics 5000, Intel HD Graphics 5000, Built-In
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E384A544D4C41522D4E544D
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x117), Broadcom BCM43xx 1.0 (6.30.223.154.65)
Bluetooth: Version 4.2.6f1 14216, 3 services, 15 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
USB Device: Internal Memory Card Reader
USB Device: Generic USB Joystick
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Air, Apple Inc., 23.6
Find all posts by this user
Quote this message in a reply
08-29-2014, 03:02 PM
Post: #28
RE: Mac OS X - PPSSPP Application Bundle Builds
To view the hidden .config file I did the following. I converted my save files from an older windows laptop to my Mac running 10.9. Works great.
Thank you.

In Terminal, paste the following: defaults write com.apple.finder AppleShowAllFiles YES
Press return


To hide them again past the following in Terminal:
defaults write com.apple.finder AppleShowAllFiles NO
Find all posts by this user
Quote this message in a reply
08-29-2014, 07:49 PM
Post: #29
RE: Mac OS X - PPSSPP Application Bundle Builds
thanks for the help! although, i'm having another problem (i don't know a lot about mac os x, so my question may sound a little stupid). that answer says that the invisible folder, .config, should be in my home. if the folder's invisible, how exactly would i view it/get to it? i searched .config in finder, just to be sure, but can i get some help?
Find all posts by this user
Quote this message in a reply
08-29-2014, 08:46 PM
Post: #30
RE: Mac OS X - PPSSPP Application Bundle Builds
(08-29-2014 07:49 PM)ashcott Wrote:  thanks for the help! although, i'm having another problem (i don't know a lot about mac os x, so my question may sound a little stupid). that answer says that the invisible folder, .config, should be in my home. if the folder's invisible, how exactly would i view it/get to it? i searched .config in finder, just to be sure, but can i get some help?

The easy way is from the "Go to folder" menu

In the Finder, choose Go > Go To Folder.

You now the forlder you are looking for so....

/Users/_thenameofyouruser_/.config/ppsspp/PSP
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: