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 

Lua Player for PSP
Goto page 1, 2, 3 ... 10, 11, 12  Next
 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Lua Player Development
View previous topic :: View next topic  
Author Message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Sun Jul 17, 2005 11:20 am    Post subject: Lua Player for PSP Reply with quote

Lua Player, for 1.0 and 1.5 compiled. Copy the EBOOT.PBP on your PSP and edit the script.lua for your own great programs and games. The script will be compiled on-the-fly on the PSP, without any compiler on your PC, you just need a text editor! A PNG loader is integrated, so you can write your own games with it, by changing the script.lua and copying all your PNGs to the game directory. And important for newbies (and sometimes for me) : It doesn't crash (or at least it should not), but if you pass a null-pointer to a function, you'll get a nice error message, with the line in the script, which caused the error.

Last edited by Shine on Mon Dec 05, 2005 3:15 am; edited 7 times in total
Back to top
View user's profile Send private message
ector



Joined: 12 May 2005
Posts: 195

PostPosted: Sun Jul 17, 2005 11:26 am    Post subject: Reply with quote

Hehe, I had the same idea, though I ported LuaPlus, which has incredibly sweet integration with C++. You can do this:

Code:

//C++:
int hello(float a, const char *instr)
{
  //do whatever
}

lua->RegisterDirect("hello", hello);


and then lua code can just call it:
Code:

if hello(3.0,"yo") > 2 then
  -- do some lua
end


The opposite (calling Lua from C++) looks like this:

Code:

LuaFunction<int> myluafunc(lua, "myluafunc");
myluafunc(param1,param2);


I haven't actually written enough interfaces for it to be usable yet though.
Just making a little plug for LuaPlus here because few people seem to know about it, and it rocks ;)
Back to top
View user's profile Send private message
liquid8d



Joined: 30 Jun 2005
Posts: 66

PostPosted: Sun Jul 17, 2005 1:10 pm    Post subject: Reply with quote

freakin awesome :) thanks Shine... this will definitely help those of us that are not as skilled. Maybe my WoW scripting will come in handy now!

LiQuiD8d
Back to top
View user's profile Send private message AIM Address
emumaniac



Joined: 08 May 2005
Posts: 79

PostPosted: Sun Jul 17, 2005 5:59 pm    Post subject: Reply with quote

Is this a proper release now or would you rather sites wait before posting the news :) ?
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Sun Jul 17, 2005 6:48 pm    Post subject: Reply with quote

emumaniac wrote:
Is this a proper release now or would you rather sites wait before posting the news :) ?


This is a first beta version, but it is already useable and it is possible to write other games with it by just changing the Lua script, like Tetris, Pong, PacMan etc. (should take only a few hours for each game for an average programmer), so you can post the news, but perhaps the interface will change a bit, e.g. I think it is better to make the background image optional (now it is required) and I'll enhance the implementation, for example using the Gu-library for faster bit blitting. I'll release the final version next weekend, when some more feedback from users are available to improve and bugfix the current version (I don't know of any bugs in it, but I'm sure it is not bugfree).

In the final version perhaps there will be a Java implementation to run your scripts without changes on Windows, Mac and Linux.
Back to top
View user's profile Send private message
rinco



Joined: 21 Jan 2005
Posts: 255
Location: Canberra, Australia

PostPosted: Sun Jul 17, 2005 7:38 pm    Post subject: Reply with quote

Have you considered something like LuaSDL?

http://sourceforge.net/projects/luasdl/

Built with tolua, which isn't so bad.
Back to top
View user's profile Send private message
DiabloTerrorGF



Joined: 15 Jul 2005
Posts: 64

PostPosted: Sun Jul 17, 2005 9:27 pm    Post subject: Reply with quote

Nice, I was waiting for a JRE, but this could let me get done what I want to get done.
Back to top
View user's profile Send private message
Kinsman



Joined: 18 Jul 2005
Posts: 15
Location: Canada

PostPosted: Mon Jul 18, 2005 2:04 am    Post subject: Re: Lua for PSP, or: writing games the easy way without comp Reply with quote

Very cool. I was thinking about porting Javascript to the PSP myself, but this is just as good. :)

You probably have a lot of ideas about what you want to put in your library (sound, graphics, etc.), so I'll just suggest some less obvious things..

* Analog stick reading. I've seen some code in the forums or elsewhere that manages this..

* You should have a 'freeImage' command. (As well as a 'free' command for whatever else you want to load.)

* A timer that handles milliseconds. I checked the OS library for Lua, and it looks like the smallest time it can handle is seconds.

And also, when you release the final version, make sure you give it a general name like 'LUA Player' so we don't have a bunch of homebrew games all named 'Snake' :)

EDIT: If you check Section 3.8 of the "LUA 5.0 reference manual", you should find a section on 'userdata' objects. I think you can use them to avoid having to keep track of image handles - and, LUA will garbage collect image data for you.
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Mon Jul 18, 2005 4:55 am    Post subject: Re: Lua for PSP, or: writing games the easy way without comp Reply with quote

Kinsman wrote:
* Analog stick reading. I've seen some code in the forums or elsewhere that manages this..

* A timer that handles milliseconds. I checked the OS library for Lua, and it looks like the smallest time it can handle is seconds.

And also, when you release the final version, make sure you give it a general name like 'LUA Player' so we don't have a bunch of homebrew games all named 'Snake' :)

EDIT: If you check Section 3.8 of the "LUA 5.0 reference manual", you should find a section on 'userdata' objects. I think you can use them to avoid having to keep track of image handles - and, LUA will garbage collect image data for you.


Thanks, I'll add this and I'll change the image handling, if Lua helps with GC.

ector wrote:
I had the same idea, though I ported LuaPlus, which has incredibly sweet integration with C++


The integration of functions looks nice, I assume this is some template metaprogramming magic. Perhaps I'll use it, if I want to use C++ for PSP.

rinco wrote:

Have you considered something like LuaSDL?


Doesn't look like a production quality product. I've found another one: http://lua-users.org/wiki/LuaModuleLuaSdl, should be easy to use it.

I've seperated the project for Lua now, see this topic, so it can be used independently from my Snake game or a Lua player.
Back to top
View user's profile Send private message
VgSlag



Joined: 30 Jun 2005
Posts: 43

PostPosted: Tue Jul 19, 2005 7:59 am    Post subject: Reply with quote

Thanks for this, its great!

I've started with a tile engine:

http://www.flash-git.net/pspProg1.jpg
http://www.flash-git.net/pspProg2.jpg

I'll be stripping out the mario gfx and using my own eventually.

When I draw my character over the tiles it removes the tiles, is there a way round this? I've not done this before so please excuse my ignorance.

G
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Tue Jul 19, 2005 8:04 am    Post subject: Reply with quote

VgSlag wrote:
When I draw my character over the tiles it removes the tiles, is there a way round this? I've not done this before so please excuse my ignorance.


Yes, use images with alpha channel and when moving, call fillBackground, with the position and size of your character and then again draw your character at the next position.

It's a bit a hack, the next version will provide an interface for multiple offscreen images and will be faster, so it should be possible to blit all images in every VSync, including the whole background.
Back to top
View user's profile Send private message
VgSlag



Joined: 30 Jun 2005
Posts: 43

PostPosted: Tue Jul 19, 2005 8:28 am    Post subject: Reply with quote

Cheers, thats fixed the BG looking messy when I move my character. I'm blitting my tiles to the"foreground" so redrawing the background isn't helping with my character making those dissapear.

Is there a better way of my doing that? Please excuse if my vernacular is all wrong and thanks for any help you can give.
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Tue Jul 19, 2005 6:09 pm    Post subject: Reply with quote

VgSlag wrote:
Cheers, thats fixed the BG looking messy when I move my character. I'm blitting my tiles to the"foreground" so redrawing the background isn't helping with my character making those dissapear.


So you have to blit anything from bottom to top: background (with fillBackground), tiles and the character.

If there are many tiles, this can be slow, this is the reason why I plan to add multiple offscreen support: You have one offscreen image, in which you can blit the background and all tiles. This offscreen image is blitted to the display and the the character will be blitted on it. Or you can use multiple offscreens for parallax scrolling, like in good old jump-and-run games. I'll provide some samples with the new player, but I'll have more time at weekend to implement it.
Back to top
View user's profile Send private message
VgSlag



Joined: 30 Jun 2005
Posts: 43

PostPosted: Tue Jul 19, 2005 6:47 pm    Post subject: Reply with quote

Ohhhh, I see!

Didn't realise it would work like that.

I'll just reblit the 4 tiles around the player ratehr than the whole map, that should work shouldn't it?

Thanks again!
Back to top
View user's profile Send private message
tank



Joined: 20 Jul 2005
Posts: 4

PostPosted: Wed Jul 20, 2005 5:14 pm    Post subject: I love it! Reply with quote

Hey shine, great work on this.
To the person about the icon always being snake, just use PBP Unpacker and repack it with a new .SFO and new ICON0. Please keep this project going. It is a lot of fun.

here is my first psp lua demo:
- PSP 1.0 ( tested )
http://www.geocities.com/huntingdanimal/steel_demo_psp1.0.zip
- PSP 1.5 ( untested )
http://www.geocities.com/huntingdanimal/steel_demo_psp1.5.zip

let me know what you think.
Back to top
View user's profile Send private message
qleyo



Joined: 06 May 2005
Posts: 21
Location: Nottingham, UK

PostPosted: Thu Jul 21, 2005 6:17 pm    Post subject: Reply with quote

tank wrote:

here is my first psp lua demo:
- PSP 1.0 ( tested )
http://www.geocities.com/huntingdanimal/steel_demo_psp1.0.zip
- PSP 1.5 ( untested )
http://www.geocities.com/huntingdanimal/steel_demo_psp1.5.zip

let me know what you think.


so do i just unpack the zip file and put in my PSP/GAME directory?

edit:tried that... error 80020001 the game could not be started...so i guess thats now how its done, on version 1.5
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
Arwin



Joined: 12 Jul 2005
Posts: 426

PostPosted: Thu Jul 21, 2005 7:09 pm    Post subject: Reply with quote

If Lua will support sound, I could write a bemani (=music style, like stepmania) for it. That'd be fun!

From the looks of it, all I'd need right now is that multiple frame-switch option and then playing an mp3 in the background. (especially the latter ;) and maybe some sound effects ...)
Back to top
View user's profile Send private message
Evil Inside



Joined: 21 Jul 2005
Posts: 17

PostPosted: Fri Jul 22, 2005 3:42 am    Post subject: Reply with quote

I'm trying to run Snake and Steel Demo on Windows XP using PSPe09b.

Neither games will load, giving me an error like this:

Quote:

load C:\Documents and Settings\Administrator\Desktop\PSPfiles\PSPEmulator\pspe09b\pspe\ms0\PSP\GAME\SOFT2\EBOOT.PBP
PBP format
illegal address
PC = 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
00000000 00000000 00000000 00000000
Fatal signal: Segmentation Fault (SDL Parachute Deployed)


Am I doing something wrong or is Lua player not supported by PSPe?
Back to top
View user's profile Send private message
Shine



Joined: 03 Dec 2004
Posts: 728
Location: Germany

PostPosted: Fri Jul 22, 2005 8:41 am    Post subject: Reply with quote

Just to let you know I'm still working on this project: Preview of the PC Lua Player. The Snake game script works, but only image loading and blitting is implemented so far, I'll do the rest the next days, like joystick implementation with cursor keys, sound etc.
Back to top
View user's profile Send private message
Evil Inside



Joined: 21 Jul 2005
Posts: 17

PostPosted: Fri Jul 22, 2005 12:44 pm    Post subject: Reply with quote

Excellent. I'm looking forward to analog stick and sound implimentation.

I've been digging up the source from my various Flash games and apps(just getting things prepped up and ready to dice into some lua scripting).
Back to top
View user's profile Send private message
frogjy



Joined: 20 Jul 2005
Posts: 1

PostPosted: Fri Jul 22, 2005 5:31 pm    Post subject: Reply with quote

why i can't download demo???

ページを表示できません
Back to top
View user's profile Send private message
VgSlag



Joined: 30 Jun 2005
Posts: 43

PostPosted: Fri Jul 22, 2005 8:38 pm    Post subject: Reply with quote

Shine, something else that would be really useful would be the ability to rotate an image.

I've got a cool 4-5 player game you could play on psp but it needs to be able to rotate images.
Back to top
View user's profile Send private message
DiabloTerrorGF



Joined: 15 Jul 2005
Posts: 64

PostPosted: Sat Jul 23, 2005 9:56 am    Post subject: Reply with quote

I was making a space invaders type game, but when doing a lot of action it slows down. Anyway to set the PSP to 333mhz when running our programs using LUA?
Back to top
View user's profile Send private message
VgSlag



Joined: 30 Jun 2005
Posts: 43

PostPosted: Sat Jul 23, 2005 5:03 pm    Post subject: Reply with quote

Please excuse me for speaking for Shine but I've already asked this and he replied:

Quote:
This will be solved with the new GU lib support, again this weekend. Now I'm blitting the images by software, which is really slow. Using the GU lib fom PSPSDK is as fast as 33 million polygons per second, so I think some million full-screen blits per second are possible.
Back to top
View user's profile Send private message
LiquidIce



Joined: 04 Apr 2005
Posts: 55

PostPosted: Sun Jul 24, 2005 10:40 pm    Post subject: Reply with quote

Hi Shine. I just wanted to post and say think you for providing this execelent development tool. It is going to be a lot easier for people to make quick games without having to know anything about compiling the toolchain.

It's something like this that sony should pick up sign with their key and put on a UMD with a nice graphics library. Then they give the ability to allow people to create their own games allowing homebrew to thrive without feeding into the piracy of their commercial games.

I'm looking forward to the PC player and the next release of Lua with GU lib. I have not ran into any major bugs, but it was difficult to understand some of the syntax. It helps to learn by example, and so far there are only 2 games out for this. I will be releasing the source code for my game when it's ready.

One thing that would speed up the development process is the ability for Lua to activate the USB on the PSP so you can modify the script while still in the game, then just hook the start button to restart the script when it's finished loading.

Thanks again!

Update: the SVN has a lua/doc directory with some good docs and examples. I also went to the bookstore and read a chapter in a book called "Programming Game AI by Example" by Mat Buckland. It was very helpful in understanding the way Lua works.

Armed with new knowledge, I still have questions.. is there any kind of hitTest in Lua? I want to do a hit test to see if one image intersects with another image on screen. In flash this is as simple as:
_root["bounce" + i].hitTest(_root.instanceName) //Checks to see if the bounce instance intersects the instanceName instance.
Back to top
View user's profile Send private message Visit poster's website
DiabloTerrorGF



Joined: 15 Jul 2005
Posts: 64

PostPosted: Mon Jul 25, 2005 2:01 pm    Post subject: Reply with quote

VgSlag wrote:
Please excuse me for speaking for Shine but I've already asked this and he replied:

Quote:
This will be solved with the new GU lib support, again this weekend. Now I'm blitting the images by software, which is really slow. Using the GU lib fom PSPSDK is as fast as 33 million polygons per second, so I think some million full-screen blits per second are possible.


I tried putting nothing to the screen as of right now and it still slows down according to my score(it is an active counter, like when you get 300 points it raises your score 100 points every second for three seconds), it slows down when killin lots of enemies at once with special weapons and such.

And this is more like a Ikuruga or 1942 type clone... now...
Back to top
View user's profile Send private message
bugkiller78



Joined: 22 Jul 2005
Posts: 5

PostPosted: Tue Jul 26, 2005 4:57 am    Post subject: Install problem Reply with quote

hi guys,

I already installed PSPToolchain20050713 successfully. Now I'm installing the Lua by running "make" and get this error:

Code:
make: psp-config: command not found
Makefile:18: /lib/build.mak: No such file or directory
make: *** No rule to make target '/lib/build.mak'. Stop.


This might be a dump question cuz I'm new to Unix-based programming. Anyway, thanks for your help!
Back to top
View user's profile Send private message
LiquidIce



Joined: 04 Apr 2005
Posts: 55

PostPosted: Tue Jul 26, 2005 5:28 am    Post subject: Reply with quote

You will need to install both the toolchain and the pspsdk to compile this app. There are several threads in the PSPSDK forum which describe this process in great detail. Good Luck!

BTW, if all you want to do is make a Lua game, all you need to do is edit the script.lua file included in Shine's distribution. You do not need to compile anything to do this.

I'm waiting for Shine to release the next version of the player so I can finish my game. The way it runs right now is unplayable due to the speed of blitting multiple graphics at once, and the alpha issues i'm having for not filling the background correctly. Once I finish my game, I may attempt to add some quick networking code which will save and load high scores from a server.
Back to top
View user's profile Send private message Visit poster's website
Arwin



Joined: 12 Jul 2005
Posts: 426

PostPosted: Tue Jul 26, 2005 7:13 am    Post subject: Re: Install problem Reply with quote

bugkiller78 wrote:
hi guys,

I already installed PSPToolchain20050713 successfully. Now I'm installing the Lua by running "make" and get this error:

Code:
make: psp-config: command not found
Makefile:18: /lib/build.mak: No such file or directory
make: *** No rule to make target '/lib/build.mak'. Stop.


This might be a dump question cuz I'm new to Unix-based programming. Anyway, thanks for your help!


you need to make sure you put the correct path settings and environment variables. What environment are you using? Unix? Dos? Cygwin?

I put the following lines in my bashrc (cygwin), taken from some instructions in the ps2dev forums and just replacing all the ps2s with psps:

export PSPDEV=/user/local/pspdev
export PSPSDK=$PSPDEV/pspsdk
export PATH=$PATH:$PSPDEV/bin:$PSPDEV/ee/bin:$PSPDEV/iop/bin:$PSPDEV/dvp/bin:$PSPSDK/bin
Back to top
View user's profile Send private message
bugkiller78



Joined: 22 Jul 2005
Posts: 5

PostPosted: Tue Jul 26, 2005 8:01 am    Post subject: Reply with quote

hi Arwin,

Yes, it was all about the PATH. I added C:\cygwin\usr\local\pspdev\bin\ to my path and the installation worked. However, when I "make" the ./lua/sample/ I got some errors:


Code:
$ make
psp-gcc -I. -I/usr/local/pspdev/psp/sdk/include -O2 -G0 -Wall  -L. -L/usr/local/pspdev/psp/sdk/lib   main.o -llua -lm -lpspdebug -lpsplibc -lpspkernel
 -o luatest.elf
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lobject.o): In function `luaO_str2d':
lobject.c:(.text+0x1bc): undefined reference to `_ctype_'
lobject.c:(.text+0x1c8): undefined reference to `_ctype_'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lvm.o): In function `luaV_strcmp':
lvm.c:(.text+0xa08): undefined reference to `strcoll'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lauxlib.o): In function `errfile':
lauxlib.c:(.text+0x1500): undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lauxlib.o): In function `luaL_loadfile':
lauxlib.c:(.text+0x15dc): undefined reference to `_ctype_'
lauxlib.c:(.text+0x15e0): undefined reference to `_ctype_'
lauxlib.c:(.text+0x15fc): undefined reference to `_impure_ptr'
lauxlib.c:(.text+0x162c): undefined reference to `_impure_ptr'
lauxlib.c:(.text+0x1600): undefined reference to `_impure_ptr'
lauxlib.c:(.text+0x16c0): undefined reference to `_impure_ptr'
lauxlib.c:(.text+0x1710): undefined reference to `_impure_ptr'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lauxlib.o):lauxlib.c:(.text+0x1714): more undefined references to `_impure_ptr' follo
w
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lauxlib.o): In function `luaL_loadfile':
lauxlib.c:(.text+0x1724): undefined reference to `__srget'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lauxlib.o): In function `aux_do':
lauxlib.c:(.text+0x17e0): undefined reference to `_impure_ptr'
lauxlib.c:(.text+0x17e4): undefined reference to `_impure_ptr'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lbaselib.o): In function `luaB_print':
lbaselib.c:(.text+0x60): undefined reference to `_impure_ptr'
lbaselib.c:(.text+0x84): undefined reference to `_impure_ptr'
lbaselib.c:(.text+0xd4): undefined reference to `_impure_ptr'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lbaselib.o):lbaselib.c:(.text+0xd8): more undefined references to `_impure_ptr' follo
w
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lbaselib.o): In function `luaB_tonumber':
lbaselib.c:(.text+0x228): undefined reference to `_ctype_'
lbaselib.c:(.text+0x234): undefined reference to `_ctype_'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `pushresult':
liolib.c:(.text+0x2c): undefined reference to `__errno'
liolib.c:(.text+0x54): undefined reference to `__errno'
liolib.c:(.text+0x8c): undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `aux_close':
liolib.c:(.text+0x320): undefined reference to `_impure_ptr'
liolib.c:(.text+0x324): undefined reference to `_impure_ptr'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `g_iofile':
liolib.c:(.text+0x758): undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_lines':
liolib.c:(.text+0x968): undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `g_read':
liolib.c:(.text+0xd90): undefined reference to `fscanf'
liolib.c:(.text+0xde0): undefined reference to `__srget'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_execute':
liolib.c:(.text+0x12b0): undefined reference to `system'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_date':
liolib.c:(.text+0x166c): undefined reference to `localtime'
liolib.c:(.text+0x16a4): undefined reference to `strftime'
liolib.c:(.text+0x17e4): undefined reference to `gmtime'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_time':
liolib.c:(.text+0x196c): undefined reference to `mktime'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_difftime':
liolib.c:(.text+0x1a54): undefined reference to `difftime'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `io_setloc':
liolib.c:(.text+0x1b18): undefined reference to `setlocale'
liolib.c:(.text+0x1b64): undefined reference to `setlocale'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(liolib.o): In function `luaopen_io':
liolib.c:(.text+0x1c98): undefined reference to `_impure_ptr'
liolib.c:(.text+0x1cb8): undefined reference to `_impure_ptr'
liolib.c:(.text+0x1c80): undefined reference to `_impure_ptr'
liolib.c:(.text+0x1cd8): undefined reference to `_impure_ptr'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lstrlib.o): In function `str_lower':
lstrlib.c:(.text+0x214): undefined reference to `_ctype_'
lstrlib.c:(.text+0x218): undefined reference to `_ctype_'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lstrlib.o): In function `str_upper':
lstrlib.c:(.text+0x2f4): undefined reference to `_ctype_'
lstrlib.c:(.text+0x2f8): undefined reference to `_ctype_'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lstrlib.o): In function `match_class':
lstrlib.c:(.text+0x80c): undefined reference to `_ctype_'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/liblua.a(lstrlib.o):lstrlib.c:(.text+0x810): more undefined references to `_ctype_' follow
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/libm.a(s_ldexp.o): In function `ldexp':
../../../../../newlib/libm/math/s_ldexp.c:77: undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/libm.a(w_acos.o): In function `acos':
../../../../../newlib/libm/math/w_acos.c:111: undefined reference to `__errno'
../../../../../newlib/libm/math/w_acos.c:108: undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/libm.a(w_asin.o): In function `asin':
../../../../../newlib/libm/math/w_asin.c:114: undefined reference to `__errno'
../../../../../newlib/libm/math/w_asin.c:111: undefined reference to `__errno'
/usr/local/pspdev/lib/gcc/psp/4.0.0/../../../../psp/lib/libm.a(w_atan2.o):../../../../../newlib/libm/math/w_atan2.c:110: more undefined references to
`__errno' follow
collect2: ld returned 1 exit status
make: *** [luatest.elf] Error 1



I'm using cygwin on WinXP. Any clue?

Thanks[/code]
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 Lua Player Development All times are GMT + 10 Hours
Goto page 1, 2, 3 ... 10, 11, 12  Next
Page 1 of 12

 
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