forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

upload a pspsdk for ppc?

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Tue Apr 28, 2009 3:57 am    Post subject: upload a pspsdk for ppc? Reply with quote

From J.F. :


Okay, here's the archive with pspdev. It's the very latest, just built over the last day. It's got everything except for gdb (wouldn't build), insight (wouldn't build because gdb didn't build), and psplinkusb (also wouldn't build). It's got all the standard libraries. It also has the full M33 SDK at pspdev/SDK. I tested it by building Basilisk II, so I know the toolchain and libs work... on 10.3.9. I would assume 10.5 is backwards compatible. Guess you'll find out. :D

You still need to install X11, Xcode, the X11SDK, and MacPorts. To build some projects, you may need to install (via MacPorts) some packages like pkg_config and autogen. You don't need ALL the dependencies needed to build the toolchain because I've already built it. You just need whatever the minimum is to RUN it. Don't forget the environment variables.

The link for MacPorts

The sdk
MD5: 3020D7C040D8BC3F926C9FE438A5835A

For PPC Mac OSX!! It's about 62 MB.

Assuming you decompress the archive to a directory like "/Users/your_user_name/Tools/pspdev", then the exports would be:

Code:
Code:
export PSPDEV="/Users/your_user_name/Tools/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="$PATH:$PSPPATH"
export PKG_CONFIG_PATH="$PSPDEV/psp/lib/pkgconfig"



You can add those to the bash config file with:

Code:
vim .bash_profile


after paste enter press ESC,then
Code:
:wq


, or just cut and paste them into the terminal when you open it. Then just cd to the directory of the psp project you wish to build and do the normal gcc make procedure.


Last edited by gott_gott on Sat May 09, 2009 10:54 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
sauron_le_noir



Joined: 05 Jul 2008
Posts: 229

PostPosted: Tue Apr 28, 2009 4:04 am    Post subject: Reply with quote

what is your os for PPC --> aix ?
Back to top
View user's profile Send private message Send e-mail MSN Messenger
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Tue Apr 28, 2009 11:37 am    Post subject: Reply with quote

Mac OSX Leopard
Back to top
View user's profile Send private message Visit poster's website
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Tue Apr 28, 2009 8:54 pm    Post subject: Reply with quote

solved
_________________
This is my signature.
You can read it or not.
It's ur choice.
;D


Last edited by gott_gott on Sat May 09, 2009 11:00 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
ardatan



Joined: 12 Jan 2008
Posts: 44

PostPosted: Wed Apr 29, 2009 3:02 am    Post subject: Reply with quote

Try using Microsoft Virtual PC and run linux or wxp... Install pspsdk on cygwin or linux...
_________________
I'm sorry for my bad English.
Back to top
View user's profile Send private message
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Wed Apr 29, 2009 11:39 pm    Post subject: dl Reply with quote

solved
_________________
This is my signature.
You can read it or not.
It's ur choice.
;D


Last edited by gott_gott on Sat May 09, 2009 11:00 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Sun May 03, 2009 11:41 pm    Post subject: Reply with quote

solved
_________________
This is my signature.
You can read it or not.
It's ur choice.
;D


Last edited by gott_gott on Sat May 09, 2009 10:59 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
J.F.



Joined: 22 Feb 2004
Posts: 2906

PostPosted: Mon May 04, 2009 4:35 am    Post subject: Reply with quote

Sorry, all I got is Panther for PPC. My Leo is x86 only. Actually, I run linux on my PPC these days... it gives me something more up to date without stressing the older hardware (a G3 iMac).
Back to top
View user's profile Send private message AIM Address
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Tue May 05, 2009 1:56 am    Post subject: Reply with quote

solved
_________________
This is my signature.
You can read it or not.
It's ur choice.
;D


Last edited by gott_gott on Sat May 09, 2009 10:59 pm; edited 1 time in total
Back to top
View user's profile Send private message Visit poster's website
Heimdall



Joined: 10 Nov 2005
Posts: 259
Location: Netherlands

PostPosted: Tue May 05, 2009 5:39 pm    Post subject: Reply with quote

Why don't you just try to build it yourself since noone seems to have a development machine like you?

It is quite simple, all you need is a small set of open source applications:

binutils, gcc, make, bash, svn

just checkout the psptoolchain project and try to run the build script.
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
J.F.



Joined: 22 Feb 2004
Posts: 2906

PostPosted: Wed May 06, 2009 5:06 am    Post subject: Reply with quote

I'll see if I can't do it in 10.3... it may work for 10.5 as well, but clearly you'll have to be patient. Devs here generally don't have a lot of time. Sometimes, it takes days just to get an answer, much less tools. I've got to dig through the forum here for the threads on building the tools in OSX, see if I can get that to work in 10.3, then test the toolchain to see if it even works (I remember there being endian issues with some of the tools at one point in time; the tools were all hard coded for little endian platforms, and the PPC is big endian).
Back to top
View user's profile Send private message AIM Address
J.F.



Joined: 22 Feb 2004
Posts: 2906

PostPosted: Thu May 07, 2009 7:39 pm    Post subject: Reply with quote

Okay, here's the archive with pspdev. It's the very latest, just built over the last day. It's got everything except for gdb (wouldn't build), insight (wouldn't build because gdb didn't build), and psplinkusb (also wouldn't build). It's got all the standard libraries. It also has the full M33 SDK at pspdev/SDK. I tested it by building Basilisk II, so I know the toolchain and libs work... on 10.3.9. I would assume 10.5 is backwards compatible. Guess you'll find out. :D

You still need to install X11, Xcode, the X11SDK, and MacPorts. To build some projects, you may need to install (via MacPorts) some packages like pkg_config and autogen. You don't need ALL the dependencies needed to build the toolchain because I've already built it. You just need whatever the minimum is to RUN it. Don't forget the environment variables.

The link for MacPorts is:
http://www.macports.org/install.php

http://rapidshare.com/files/230145659/pspdev-osx103-ppc.zip.html
MD5: 3020D7C040D8BC3F926C9FE438A5835A

The link is only good for ten downloads, and/or thirty days, so don't download this if you don't need the toolchain for PPC Mac OSX!! It's about 62 MB.

Assuming you decompress the archive to a directory like "/Users/your_user_name/Tools/pspdev", then the exports would be:

Code:
export PSPDEV="/Users/your_user_name/Tools/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="$PATH:$PSPPATH"
export PKG_CONFIG_PATH="$PSPDEV/psp/lib/pkgconfig"


You can add those to the bash config file, or just cut and paste them into the terminal when you open it. Then just cd to the directory of the psp project you wish to build and do the normal gcc make procedure.
Back to top
View user's profile Send private message AIM Address
gott_gott



Joined: 28 Apr 2009
Posts: 7

PostPosted: Fri May 08, 2009 5:17 am    Post subject: Reply with quote

solved
_________________
This is my signature.
You can read it or not.
It's ur choice.
;D
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group