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 

PSPSDK 1.0+beta released!
Goto page 1, 2  Next
 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
mrbrown



Joined: 17 Jan 2004
Posts: 1536

PostPosted: Tue Jun 28, 2005 9:06 pm    Post subject: PSPSDK 1.0+beta released! Reply with quote

Release: PSPSDK 1.0+beta

From the README:

Quote:
The PSP Software Development Kit (PSPSDK) is a collection of Open Source tools and libraries written for Sony's Playstation Portable (PSP) gaming console. It also includes documentation and other resources developers can use to write software for the PSP.

PSPSDK is distributed under a BSD-compatible license. See the LICENSE file for more information.


So far only the source distribution has been released. Binary packages will surface soon.

Although this isn't mentioned in the README, PSPSDK requires at least psptoolchain-20050625.

This is a BETA, so there will be bugs. Report bugs in this forum or mail them to pspsdk-bugs@lists.ps2dev.org.
Back to top
View user's profile Send private message
Laurens



Joined: 28 Jun 2005
Posts: 14

PostPosted: Tue Jun 28, 2005 10:32 pm    Post subject: Reply with quote

Nice! It's looking great!

However, although mentioned in the README, I can't seem to find a reference to libGU in the documentation.
_________________
If a beautiful girl tells you she's done some modeling work in the past, and you ask her what 3D software she used, you might be a gamedeveloper.
Back to top
View user's profile Send private message MSN Messenger
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 12:51 am    Post subject: Reply with quote

Thanks so much guys! Win32 installer that i made available here: http://www.tomkatgames.com/psp/setup.exe (25MB). Basically the same deal as the ps2dev kit installer

Enjoy everyone!
Back to top
View user's profile Send private message Send e-mail
Mak0



Joined: 27 Jan 2005
Posts: 36

PostPosted: Wed Jun 29, 2005 1:07 am    Post subject: Reply with quote

very cool!

I cant wait to check it out :)
Back to top
View user's profile Send private message
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 1:11 am    Post subject: Reply with quote

OMFG it's so easy to compile up PSP apps now.... lol :)
Back to top
View user's profile Send private message Send e-mail
chp



Joined: 23 Jun 2004
Posts: 313

PostPosted: Wed Jun 29, 2005 1:20 am    Post subject: Reply with quote

Laurens wrote:
Nice! It's looking great!

However, although mentioned in the README, I can't seem to find a reference to libGU in the documentation.


It's a beta and libGU is not available yet, it's still in development. I'm working as fast as I can damnit. ;P
Back to top
View user's profile Send private message
PacManFan



Joined: 25 Jun 2005
Posts: 66

PostPosted: Wed Jun 29, 2005 1:29 am    Post subject: Awesome! Reply with quote

Thanks for all the hard work. One thing I noticed when trying to port quake over to this is: it's missing fscanf, so I still have to include the -lc (libc.a) library and tell the linker to ignore multiple definitions.

-PMF
Back to top
View user's profile Send private message Send e-mail
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 1:34 am    Post subject: Reply with quote

Hey guys.... how do you actually specify the Icon that the packer uses in the make file... say ICON0.PNG?

Tommy.
Back to top
View user's profile Send private message Send e-mail
TyRaNiD



Joined: 18 Jan 2004
Posts: 918

PostPosted: Wed Jun 29, 2005 1:54 am    Post subject: Reply with quote

TommyBear, all extra files for the EBOOT can be added by defining some simple parameters. For defining the ICON file add this to your makefile.

Code:

PSP_EBOOT_ICON=path/to/my/picture/png


And it should pick it up. You can do the same with things like the PSAR etc.
Back to top
View user's profile Send private message
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 2:01 am    Post subject: Reply with quote

TyRaNiD wrote:
TommyBear, all extra files for the EBOOT can be added by defining some simple parameters. For defining the ICON file add this to your makefile.

Code:

PSP_EBOOT_ICON=path/to/my/picture/png


And it should pick it up. You can do the same with things like the PSAR etc.


Yeah cool thanks.... in the end I overcame my laziness and looked at the actual build.mak ;) Can someone please mirror the win32 installer? I'm getting pummeled over here by eager hordes of PSP devrs :) Or someone with access add it to the downloads for the site?

Tommy.
Back to top
View user's profile Send private message Send e-mail
jimparis



Joined: 10 Jun 2005
Posts: 1179
Location: Boston

PostPosted: Wed Jun 29, 2005 2:08 am    Post subject: Reply with quote

TommyBear wrote:
Can someone please mirror the win32 installer?


http://psp.jim.sh/setup.exe

Feel free to redirect your URL there, too.
Back to top
View user's profile Send private message
mrbrown



Joined: 17 Jan 2004
Posts: 1536

PostPosted: Wed Jun 29, 2005 2:45 am    Post subject: Re: Awesome! Reply with quote

PacManFan wrote:
Thanks for all the hard work. One thing I noticed when trying to port quake over to this is: it's missing fscanf, so I still have to include the -lc (libc.a) library and tell the linker to ignore multiple definitions.

-PMF


Thanks for the heads up. We'll add the myriad of *scanf() functions to PSPSDK's libc for 1.0.
Back to top
View user's profile Send private message
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 2:52 am    Post subject: Re: Awesome! Reply with quote

mrbrown wrote:
PacManFan wrote:
Thanks for all the hard work. One thing I noticed when trying to port quake over to this is: it's missing fscanf, so I still have to include the -lc (libc.a) library and tell the linker to ignore multiple definitions.

-PMF


Thanks for the heads up. We'll add the myriad of *scanf() functions to PSPSDK's libc for 1.0.


oh very nice!
Back to top
View user's profile Send private message Send e-mail
jason



Joined: 14 Apr 2005
Posts: 28

PostPosted: Wed Jun 29, 2005 3:28 am    Post subject: Reply with quote

This is AWESOME! MrBrown, you rock!
Back to top
View user's profile Send private message
mrbrown



Joined: 17 Jan 2004
Posts: 1536

PostPosted: Wed Jun 29, 2005 3:44 am    Post subject: Reply with quote

jason wrote:
This is AWESOME! MrBrown, you rock!


This was not all me, there were several others involved in getting PSPSDK out the door, not to mention those who've worked on ps2sdk in the past (which some portions of PSPSDK are based upon).

Here's a short list of the PSPSDK Players (forum and IRC nickname):
    TyRaNiD
    Warren (John_K on IRC)
    adresd
    ooPo
    Oobles
    rinco

I hope that list gets much longer!
Back to top
View user's profile Send private message
aniasis



Joined: 29 Jun 2005
Posts: 2

PostPosted: Wed Jun 29, 2005 4:11 am    Post subject: Reply with quote

Does this SDK support STL?
Back to top
View user's profile Send private message
Shapyi



Joined: 25 Apr 2005
Posts: 95

PostPosted: Wed Jun 29, 2005 4:12 am    Post subject: Reply with quote

mrbrown wrote:
jason wrote:
This is AWESOME! MrBrown, you rock!


This was not all me, there were several others involved in getting PSPSDK out the door, not to mention those who've worked on ps2sdk in the past (which some portions of PSPSDK are based upon).

Here's a short list of the PSPSDK Players (forum and IRC nickname):
    TyRaNiD
    Warren (John_K on IRC)
    adresd
    ooPo
    Oobles
    rinco

I hope that list gets much longer!


Great release guys. The PSPSDK is very helpful
Back to top
View user's profile Send private message
silverbyte



Joined: 10 Apr 2005
Posts: 18

PostPosted: Wed Jun 29, 2005 9:13 am    Post subject: Reply with quote

whats the diffrence from "pspsdk 1.0+beta win32 installer" and what KAL has done a day before here:

http://forums.ps2dev.org/viewtopic.php?t=2347

-------------------------------
Here's a short list of the PSPSDK Players (forum and IRC nickname):

TyRaNiD
Warren (John_K on IRC)
adresd
ooPo
Oobles
rinco
--------------------------------

also
there seems to be a possible error ?? in the start.bat.

set path to invalid directories.
path=%path%;c:\pspsdk\bin

shouldn't that be :
path=%path%;%path%\bin
Back to top
View user's profile Send private message
Agoln



Joined: 08 Jun 2005
Posts: 326
Location: Fort Wayne, IN

PostPosted: Wed Jun 29, 2005 11:53 am    Post subject: Reply with quote

silverbyte wrote:

set path to invalid directories.
path=%path%;c:\pspsdk\bin

shouldn't that be :
path=%path%;%path%\bin


No.... you are mis-understanding what a path is. Let's just say that the path is correct in that above (assuming files are put in c:\pspsdk\bin directory). a path is a place where the OS looks for executible files. Like, when you just type "copy" in dos... you dont have to do "C:\windows\system32\copy.exe" (or wherever it is located) just to access it, because it is in your path. It looks in each of those directories for a program called "copy", and if it finds it, it executes it.
Back to top
View user's profile Send private message AIM Address
wulf



Joined: 13 Apr 2005
Posts: 81

PostPosted: Wed Jun 29, 2005 11:56 am    Post subject: Reply with quote

Thanks a lot for all the hard work, people.. You are really an inspiration!
Back to top
View user's profile Send private message
etx



Joined: 02 Apr 2005
Posts: 33
Location: Detroit

PostPosted: Wed Jun 29, 2005 11:56 am    Post subject: Reply with quote

Thanks for your hard work guys! This will help me a lot, as I've never ventured into graphics or console programming until now.
Back to top
View user's profile Send private message AIM Address
silverbyte



Joined: 10 Apr 2005
Posts: 18

PostPosted: Wed Jun 29, 2005 1:35 pm    Post subject: Reply with quote

ALOGN , u insult my intelligence.... i know what path does, i feel like your trying to teach me grade one math...
maybe i wasn't clear.

if you install pspsdk1.0+ win32 the installer defaults to :
c:\program files\pspdev

inside that directory theres a file calles start.bat and the contents show :
set path=%path%;c:\pspsdk\bin

c:\pspsdk\bin does not exist.... so why am i making path = c:\pspsdk\bin

i believe this should be :
set path =c:\program files\pspdev;c:\program files\pspdev\bin

or

set path=%path%;%path%\bin

where %path% should be = c:\program files\pspdev
Back to top
View user's profile Send private message
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 2:00 pm    Post subject: Reply with quote

silverbyte wrote:
whats the diffrence from "pspsdk 1.0+beta win32 installer" and what KAL has done a day before here:


That's the dev kit and not the SDK. The win32 package here contains the DevKit and the SDK component built and ready to go.

silverbyte wrote:

set path to invalid directories.
path=%path%;c:\pspsdk\bin

shouldn't that be :
path=%path%;%path%\bin


No. The batch file temporarily sets your path to include c:\pspsdk\bin, change it to whatever you wish. %path% contains your current path settings. The line simply concatenates c:\pspsdk\bin on the end
Back to top
View user's profile Send private message Send e-mail
TommyBear



Joined: 24 Jun 2005
Posts: 50

PostPosted: Wed Jun 29, 2005 2:03 pm    Post subject: Reply with quote

silverbyte wrote:
ALOGN , u insult my intelligence.... i know what path does, i feel like your trying to teach me grade one math...
maybe i wasn't clear.

if you install pspsdk1.0+ win32 the installer defaults to :
c:\program files\pspdev

inside that directory theres a file calles start.bat and the contents show :
set path=%path%;c:\pspsdk\bin

c:\pspsdk\bin does not exist.... so why am i making path = c:\pspsdk\bin

i believe this should be :
set path =c:\program files\pspdev;c:\program files\pspdev\bin

or

set path=%path%;%path%\bin

where %path% should be = c:\program files\pspdev


I might put something into the installer to create the batch file.
Back to top
View user's profile Send private message Send e-mail
Agoln



Joined: 08 Jun 2005
Posts: 326
Location: Fort Wayne, IN

PostPosted: Wed Jun 29, 2005 3:32 pm    Post subject: Reply with quote

silverbyte wrote:
ALOGN , u insult my intelligence.... i know what path does, i feel like your trying to teach me grade one math...
maybe i wasn't clear.

Sorry for insulting you... didn't mean to, it's just that we have a lot of users here that don't know much....


silverbyte wrote:

if you install pspsdk1.0+ win32 the installer defaults to :
c:\program files\pspdev

inside that directory theres a file calles start.bat and the contents show :
set path=%path%;c:\pspsdk\bin

c:\pspsdk\bin does not exist.... so why am i making path = c:\pspsdk\bin

i believe this should be :
set path =c:\program files\pspdev;c:\program files\pspdev\bin

or

set path=%path%;%path%\bin

where %path% should be = c:\program files\pspdev

Now let met explain why I said what I did, since you do know what a path is. If you:

set path =%path%;%path%\bin

Then say in your path you have:

C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile

then you are just making your path

C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile;C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile\bin

As you can see, you are just adding a \bin to the final directory of your path, which isn't really what you want to do... not to mention repeating your entire path. I havn't looked at the code myself, but I believe that if you just change that to where your bin path is, then you should be ok.

*EDIT*
You *should* be ok with doing

set path = %path%;c:\program files\pspdev;c:\program files\pspdev\bin

(not sure if they allow spaces in path names, if not, use dos's ~1 stuff)
Back to top
View user's profile Send private message AIM Address
KaL



Joined: 03 Apr 2005
Posts: 41

PostPosted: Wed Jun 29, 2005 6:53 pm    Post subject: Reply with quote

Huh.. There is no MAKE in the win32 PSPSDK package. TommyBear can you do something ? Thx
Back to top
View user's profile Send private message
Guest






PostPosted: Wed Jun 29, 2005 7:43 pm    Post subject: Reply with quote

KaL wrote:
Huh.. There is no MAKE in the win32 PSPSDK package. TommyBear can you do something ? Thx


Huh, "make" should be installed by Cygwin. But thats a thing commonly overlooked. Can you do something ?
Back to top
deagle



Joined: 29 Jun 2005
Posts: 8

PostPosted: Wed Jun 29, 2005 11:12 pm    Post subject: Reply with quote

I have installed the KaL W32 PSPtoolchain package, then the PSPSDK into the same directory and it does work very well
I can compile both the toolchain and the pspsdk samples
Back to top
View user's profile Send private message
silverbyte



Joined: 10 Apr 2005
Posts: 18

PostPosted: Wed Jun 29, 2005 11:28 pm    Post subject: Reply with quote

Agoln wrote:
Sorry for insulting you... didn't mean to, it's just that we have a lot of users here that don't know much....


ahh no worries.

Agoln wrote:
Then say in your path you have:

C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile

then you are just making your path

C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile;C:\windows\system32;c:\windows;c:\;c:\someOtherPathFile\bin


ahh ok so %path% = whats already in my current "path = "
now i get it, in any case, i went to my enviroment path settings and added them manually.


Kal wrote:
Huh.. There is no MAKE in the win32 PSPSDK package. TommyBear can you do something ? Thx


gorim wrote:
Huh, "make" should be installed by Cygwin. But thats a thing commonly overlooked. Can you do something ?


would be nice to have cygwin packed with the win32 installer, so runs and compiles right out of the box. Sure it will make the package alittle bigger. But its one less step of d/l cygwin and installing it etc etc.

Kal made a nice package which i been working with. Love it. worked with no fuss (even with some sample source code, so i could go straight at it)

I love KAL's package.. great work.

and thnx to every1 else in the scene contributing.
Back to top
View user's profile Send private message
KaL



Joined: 03 Apr 2005
Posts: 41

PostPosted: Fri Jul 01, 2005 12:28 am    Post subject: Reply with quote

I would like to download PSPSDK from the subversion repository.. but I need login/password. Where can I get it ? Thanks.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Goto page 1, 2  Next
Page 1 of 2

 
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