PSPSDK 1.0 Beta 2 released.

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
TyRaNiD
Posts: 907
Joined: Sun Jan 18, 2004 12:23 am

PSPSDK 1.0 Beta 2 released.

Post by TyRaNiD »

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
619619
Posts: 9
Joined: Thu Jun 30, 2005 11:02 am
Location: Italy
Contact:

Post by 619619 »

Thank you, I appreciate pspsdk developers work ;)
Installed with no problems
User avatar
harleyg
Posts: 123
Joined: Wed Oct 05, 2005 6:15 am

Post by harleyg »

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?
619619
Posts: 9
Joined: Thu Jun 30, 2005 11:02 am
Location: Italy
Contact:

Post by 619619 »

You shold install the psptoolchain first and then this SDK, I think :P
User avatar
harleyg
Posts: 123
Joined: Wed Oct 05, 2005 6:15 am

Post by harleyg »

already have, but i figured it out, it was the PATH i didnt set :)
medley
Posts: 4
Joined: Sat Jun 18, 2005 8:08 am

Post by medley »

...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: Select all

#include <sys/select.h>

int main&#40;int argc, char **argv&#41;
&#123;
	select&#40;0, NULL, NULL, NULL, NULL&#41;;
	return 0;
&#125;
Makefile

Code: Select all

TARGET = select_reference
OBJS = main.o

CFLAGS = -O0 -G0 -Wall -g
CXXFLAGS = $&#40;CFLAGS&#41; -fno-exceptions -fno-rtti
ASFLAGS = $&#40;CFLAGS&#41;

EXTRA_TARGETS = EBOOT.PBP

PSPSDK=$&#40;shell psp-config --pspsdk-path&#41;
LIBS = -lc -lstdc++
include $&#40;PSPSDK&#41;/lib/build.mak
Am I missing something?
Post Reply