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 2 released.

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



Joined: 18 Jan 2004
Posts: 918

PostPosted: Mon Jan 23, 2006 12:18 am    Post subject: PSPSDK 1.0 Beta 2 released. Reply with quote

Finally after 6 months of development the new official release of PSPSDK is available. It is still in beta as development will no doubt continue in subversion for the time being, but this is the latest target to work to if you want to ensure your apps don't break from day to day.

It is available as a tarball from http://ps2dev.org/kb.x?T=1159
Back to top
View user's profile Send private message
619619



Joined: 30 Jun 2005
Posts: 9
Location: Italy

PostPosted: Mon Jan 23, 2006 1:27 am    Post subject: Reply with quote

Thank you, I appreciate pspsdk developers work ;)
Installed with no problems
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
harleyg



Joined: 05 Oct 2005
Posts: 123

PostPosted: Tue Jan 24, 2006 6:30 am    Post subject: Reply with quote

Quote:
make
cd . && /bin/sh /home/h/harleyg/pspsdk/pspsdk_1.0-beta2/missing --run autoheader
rm -f stamp-h1
touch config.h.in
cd . && /bin/sh ./config.status config.h
config.status: creating config.h
config.status: config.h is unchanged
make all-recursive
make[1]: Entering directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2'
Making all in src
make[2]: Entering directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2/src'
Making all in audio
make[3]: Entering directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2/src/audio'
psp-gcc -g -O2 -G0 -Wall -I../../src/base -I../../src/user -I../../src/debug -c sceAudio.S
make[3]: psp-gcc: Command not found
make[3]: *** [sceAudio.o] Error 127
make[3]: Leaving directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2/src/audio'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/h/harleyg/pspsdk/pspsdk_1.0-beta2'
make: *** [all] Error 2


any ideas?
Back to top
View user's profile Send private message
619619



Joined: 30 Jun 2005
Posts: 9
Location: Italy

PostPosted: Tue Jan 24, 2006 7:37 am    Post subject: Reply with quote

You shold install the psptoolchain first and then this SDK, I think :P
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
harleyg



Joined: 05 Oct 2005
Posts: 123

PostPosted: Tue Jan 24, 2006 7:39 pm    Post subject: Reply with quote

already have, but i figured it out, it was the PATH i didnt set :)
Back to top
View user's profile Send private message
medley



Joined: 18 Jun 2005
Posts: 4

PostPosted: Tue Jan 24, 2006 9:15 pm    Post subject: Reply with quote

Quote:

...undefined reference to 'select(int, fd_set*, fd_set*, fd_set*, timeval*)'


Only happens in a c++ world. Compiling as c links fine... Using latest pspsdk from svn.

Easily reproduced by adding a call to select, compile with the c++ compiler and try to link...

main.cpp
Code:

#include <sys/select.h>

int main(int argc, char **argv)
{
   select(0, NULL, NULL, NULL, NULL);
   return 0;
}


Makefile
Code:

TARGET = select_reference
OBJS = main.o

CFLAGS = -O0 -G0 -Wall -g
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)

EXTRA_TARGETS = EBOOT.PBP

PSPSDK=$(shell psp-config --pspsdk-path)
LIBS = -lc -lstdc++
include $(PSPSDK)/lib/build.mak


Am I missing something?
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
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