Search found 26 matches

by dark_zarkon
Sun Sep 03, 2006 10:57 pm
Forum: PSP Development
Topic: Nanodesktop video available
Replies: 3
Views: 1798

the application is in italian languages, but i can understand! lol
what can do this app exactly? i have read your site but i don't understand so much...

p.s. you can thanks me for downgrading your psp, do you like the background? ;)
by dark_zarkon
Tue Jul 11, 2006 6:02 pm
Forum: PSP Development
Topic: sdl compiling error??
Replies: 7
Views: 1994

-I/usr/local/include/SDL -Dmain=SDL_main -I/usr/include/mingw -DWIN32 -Uunix -mno-cygwin This part is wrong. It looks like it's somehow picking up your system's installation of SDL instead of the PSPs. You did build and install the PSP SDL, right? Can you show us the output of these three commands:...
by dark_zarkon
Tue Jul 11, 2006 4:35 am
Forum: PSP Development
Topic: sdl compiling error??
Replies: 7
Views: 1994

if i type "make" the error is:
$ make
psp-gcc -I. -I/usr/local/pspdev/psp/sdk/include -O2 -G0 -Wall -I/usr/local/inclu
de/SDL -Dmain=SDL_main -I/usr/include/mingw -DWIN32 -Uunix -mno-cygwin -c -o s
dltest.o sdltest.c
cc1: error: invalid option 'no-cygwin'
make: *** [sdltest.o] Error 1
by dark_zarkon
Mon Jul 10, 2006 7:56 pm
Forum: PSP Development
Topic: sdl compiling error??
Replies: 7
Views: 1994

Are you trying to build it for the PC ("make pc") or the PSP ("make")? What is the compiler command line being executed? "make" and "make kxploit" doesn't work, "make pc" give me a different error: make: *** no rule to make target 'gcc', needed by '...
by dark_zarkon
Sun Jul 09, 2006 9:44 pm
Forum: PSP Development
Topic: sdl compiling error??
Replies: 7
Views: 1994

sdl compiling error??

Hi! when i'm tring to compile the sdl test sample taken from here it give me thi error: cc1: error: invalid option 'no-cygwin' why? this is makefile... TARGET = sdltest OBJS = sdltest.o INCDIR = CFLAGS = -O2 -G0 -Wall CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti ASFLAGS = $&#40...
by dark_zarkon
Tue Jun 13, 2006 7:31 pm
Forum: PSP Development
Topic: SDL ./configure error
Replies: 4
Views: 1900

hi! Building -------- To build for the PSP, make sure psp-config is in the path and run: ./autogen.sh LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \ ./configure --host psp --prefix=$(psp-config --psp-prefix) make make install have you used all this instruction?
by dark_zarkon
Fri Jun 02, 2006 12:14 am
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

i have solved my problem!!

now i can compile with pspgl, reinstalled cygwin, toolchain, and lib...

now i must solve the problem with sdl...
by dark_zarkon
Tue May 30, 2006 6:24 pm
Forum: PSP Development
Topic: new error with sdl
Replies: 8
Views: 2777

The \ symbol tells bash to continue the command on the next line. See where you copied the command from - I bet that the ./configure part is on a new line. You need to press enter between the '\' and "./configure" then type the second line then hit enter again to run the command. Or you c...
by dark_zarkon
Mon May 29, 2006 7:11 pm
Forum: PSP Development
Topic: new error with sdl
Replies: 8
Views: 2777

Why are you in the test folder? Have you installed the SLD libary yet? i have installed the sdl library, now i want to "test" it but it give me that error... i have installed also the pspgl and i want also the SDL. help please! edit: i have reinstalled the sdl lib and now it seems to comp...
by dark_zarkon
Mon May 29, 2006 5:23 am
Forum: PSP Development
Topic: new error with sdl
Replies: 8
Views: 2777

Did you run this? ./autogen.sh LDFLAGS="-L$(psp-config --pspsdk-path)/lib -lc -lpspuser" \ ./configure --host psp --prefix=$(psp-config --psp-prefix) make make install now it give me this error: [img=http://img510.imageshack.us/img510/3359/error10oe.th.png]
by dark_zarkon
Mon May 29, 2006 5:04 am
Forum: PSP Development
Topic: new error with sdl
Replies: 8
Views: 2777

yes, but when i type make it give mi wich error...

help me please.
by dark_zarkon
Mon May 29, 2006 4:44 am
Forum: PSP Development
Topic: new error with sdl
Replies: 8
Views: 2777

new error with sdl

hi! :)

i have installed the sdl lib but have problem to compile test included with the library...

this is the error:

Image

thank in advance!! :)[/img]
by dark_zarkon
Wed May 24, 2006 6:39 pm
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

You're telling it the target elf requires libGL.a and libglut.a from the parent directory of where the makefile is at... which I'm guessing is very not right ;) ...then you have things like $PSPPATH and such being used... ...and $PSPSDK doesn't seem to be used at all... Is there a reason you are ha...
by dark_zarkon
Tue May 23, 2006 7:06 pm
Forum: PSP Development
Topic: sdl simple sample??
Replies: 5
Views: 2197

hi! i downloaded the test and moved the lib in the right directory but "make pc" works and the make for creating the eboot not... it give me a lot of error, it doesn't recognize the lib... i have moved it in: C:\cygwin\usr\local\pspdev\psp\lib and the makefile is: TARGET = sdltest OBJS = s...
by dark_zarkon
Tue May 23, 2006 6:29 pm
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

hi! i made a little progress but i'm stuck with this... i have moved the folder "test-bezier" in C:\cygwin\usr\local\pspdev\psp\sdk\samples\ and included this line in the makefile: include c:\cygwin\usr\local\pspdev\psp\sdk\lib\build.mak but i have this error: /usr/local/pspdev/lib/gcc/psp...
by dark_zarkon
Mon May 22, 2006 7:19 pm
Forum: PSP Development
Topic: sdl simple sample??
Replies: 5
Views: 2197

there is a test sample under sdl/tests comes with Makefile so that is where you should start and there are numerous other samples like blitting that come with SDL thanks for the answer, BTW i haven't found this folder... can you attack it somewere? :) ot: the SDL folder with include is installed in...
by dark_zarkon
Sun May 21, 2006 11:40 pm
Forum: PSP Development
Topic: sdl simple sample??
Replies: 5
Views: 2197

sdl simple sample??

i'm a noob and i don't know how to compile src written with sdl, i have installed (successfull?) sdl library but i can't test it...
someone have a simple .c file with makefile which is fine to compile?
maybe an hello world is good...

thanks! :)
by dark_zarkon
Sat May 20, 2006 6:28 pm
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

ARCH = psp- CC = $(ARCH)gcc AS = $(ARCH)as STRIP = $(ARCH)strip SIZE = $(ARCH)size MKSFO = mksfo PACK_PBP = pack-pbp FIXUP_IMPORTS = psp-fixup-imports RM = rm -f PSPPATH := $(shell psp-config --pspsdk-path) PSPG...
by dark_zarkon
Fri May 19, 2006 7:01 pm
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

Check the folder /usr/bin/local/pspdev/psp/libs (it should be somewhere around there... can't remember the exact path as I don't have access to my dev PC right now). Make sure the file ligGL.a is in there. I'm thinking that the lib isn't there. that lib is in the dir: C:\cygwin\usr\local\pspdev\psp...
by dark_zarkon
Thu May 18, 2006 7:13 pm
Forum: PSP Development
Topic: pspgl-test doesn't compile...
Replies: 10
Views: 4280

pspgl-test doesn't compile...

hello!! :)

i have installed the latest version of toolchain and it works fine, i have installe d other lib and works.

but pspgl doesn't work!

when i try to compile it give me this cygwin give me this error:

Code: Select all

make: *** No rule to make target '../ligGL.a' needed by 'bezier.elf' Stop
thanks
by dark_zarkon
Thu May 11, 2006 10:41 pm
Forum: PSP Development
Topic: Help compiling with PSPGL
Replies: 25
Views: 8029

noob question here: how can update my toolchain? Search is your friend. ;) http://forums.ps2dev.org/viewtopic.php?t=2478&postdays=0&postorder=asc&start=0 thanks! i have update my toolchain and reinstalled pspgl but it doesn't work... this is the makefile: ARCH = psp- CC = $(ARCH...
by dark_zarkon
Tue May 09, 2006 9:14 pm
Forum: PSP Development
Topic: The PSP IO Drivers
Replies: 7
Views: 3893

driver flashfat sceLFatFs_Driver+0xE2FC ... name2 = " FAT over USB Mass "; // !? ... access flash fat over USB ? The flashfat driver is the one responsable of the file system for flash0 and flash1. I don't know why it has that rare name with the USB word... :O this doesn't mean that flash...
by dark_zarkon
Sun May 07, 2006 9:35 pm
Forum: PSP Development
Topic: Help compiling with PSPGL
Replies: 25
Views: 8029

urchin wrote:I had the same problem a while ago, which went away when I did a complete update of the toolchain (not just the SDK).

Not sure about devkit pro though.
noob question here:

how can update my toolchain?
by dark_zarkon
Sun May 07, 2006 7:36 pm
Forum: PSP Development
Topic: Help compiling with PSPGL
Replies: 25
Views: 8029

I have successfully compiled NeHe's Lesson 3 OpenGL Tutorial, for the PSP. Im sorta documenting this process at my own pace, but I figured since I just finally got it compiled and working, I can move more into this. I've done it successfully in cygwin, and native linux. Hi! :) how do you have resol...
by dark_zarkon
Wed Jan 11, 2006 11:40 pm
Forum: PSP Development
Topic: Is the PSXone or whatever open source?
Replies: 13
Views: 9129

you have an email! ;)
by dark_zarkon
Wed Jan 11, 2006 9:42 pm
Forum: PSP Development
Topic: Is the PSXone or whatever open source?
Replies: 13
Views: 9129

there is on the the net source code of the project...
thruly i have it but i'm not sure that it is the real source code or fake.
if you give me your email i can send it.