| View previous topic :: View next topic |
| Author |
Message |
TyRaNiD
Joined: 18 Jan 2004 Posts: 918
|
Posted: Mon Jan 23, 2006 12:18 am Post subject: PSPSDK 1.0 Beta 2 released. |
|
|
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 |
|
 |
619619
Joined: 30 Jun 2005 Posts: 9 Location: Italy
|
Posted: Mon Jan 23, 2006 1:27 am Post subject: |
|
|
Thank you, I appreciate pspsdk developers work ;)
Installed with no problems |
|
| Back to top |
|
 |
harleyg

Joined: 05 Oct 2005 Posts: 123
|
Posted: Tue Jan 24, 2006 6:30 am Post subject: |
|
|
| 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 |
|
 |
619619
Joined: 30 Jun 2005 Posts: 9 Location: Italy
|
Posted: Tue Jan 24, 2006 7:37 am Post subject: |
|
|
| You shold install the psptoolchain first and then this SDK, I think :P |
|
| Back to top |
|
 |
harleyg

Joined: 05 Oct 2005 Posts: 123
|
Posted: Tue Jan 24, 2006 7:39 pm Post subject: |
|
|
| already have, but i figured it out, it was the PATH i didnt set :) |
|
| Back to top |
|
 |
medley
Joined: 18 Jun 2005 Posts: 4
|
Posted: Tue Jan 24, 2006 9:15 pm Post subject: |
|
|
| 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 |
|
 |
|