PSPgl
Alright i was trying to port rRootage and i put the error message into cygwin it came up with:
glViewport
/home/Nick/psptoolchain/SVN/pspgl/glViewport.c:9
??
??:0
initGL
/home/Nick/psptoolchain/projects/port/rr/src/screen.c:54
On line 54 of screen.c all it says is: void drawLine(GLfloat, GLfloat, GLfloat,
Thanks for the help!
glViewport
/home/Nick/psptoolchain/SVN/pspgl/glViewport.c:9
??
??:0
initGL
/home/Nick/psptoolchain/projects/port/rr/src/screen.c:54
On line 54 of screen.c all it says is: void drawLine(GLfloat, GLfloat, GLfloat,
Thanks for the help!
That's a meaningless mess. Is that really what it output?
BTW, rRootage has been ported at least twice so far. mrbrown's seems to work well. http://forums.ps2dev.org/viewtopic.php?t=4301
BTW, rRootage has been ported at least twice so far. mrbrown's seems to work well. http://forums.ps2dev.org/viewtopic.php?t=4301
look for any elf file. example
Code: Select all
ls *.elf
cp eglcube.elf ../tools
cd ../tools
PSP_MOUNTDIR=/media/usb/ PSP_REVISION=1.50 ./psp-install eglcube.elf --eboot-title=GL_TEST
There are 10 types of people in the world: Those who understand binary, and those who don't...
-
- Posts: 4
- Joined: Tue Dec 06, 2005 2:59 am
This topic, Post #5 By Grom mentioned a similar error to Twenty 2.. the 'umount' or un-mount ability for cygwin is really dodgy and is giving me errors even when 'install-settings' var PSP_MOUNTDIR is set.. its not much of a problem as I can still build each .elf file into a working EBOOT..
Here is the error:
Just wondered if someone could explain it for general knowledge.. I may try re-install the lib related to mount and umount.. see if that works.
Here is the error:
Code: Select all
while [ ! -d /cygdrive/i/psp/game ]; do mount /cygdrive/i; sleep 1; done
PSP_MOUNTDIR=/cygdrive/i \
../tools/psp-install --psp-revision=1.50 bezier.elf \
--eboot-title="bezier 2006/01/19 18:02:19" --eboot-icon="firefox.png"
install bezier.elf for rev1.50 on '/cygdrive/i/PSP/GAME/bezier/'...
umount /cygdrive/i
umount: /cygdrive/i: No such file or directory
make: *** [install-bezier] Error 1
rm perfmeter.o psp-setup-bezier.o firefox.raw screenshot.o bezier.o
yes it does work under windows. just have to create a mount. example mount e: /cygdrive/ejsgf wrote:Yeah, that mount stuff is really for my convenience. It should work well on any Unix-like system, but I'd be surprised if it worked under Windows.
I'm not really sure how to deal with it. What's the manual proceedure for installing things on the PSP under Windows?
There are 10 types of people in the world: Those who understand binary, and those who don't...