lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]



What OS are you working with?

I've today (well - this night 8) done a Win32/Linux/OSX wrapup which basically allows you to:

	- have easy startup on any OS (uses autorun on Win32, OSX icon etc.)
	- have your application only once (the same code used by all the OSes)

The (ultimate) intention is to wrap this with Morphix so there'd be a bootable CD that contains the OS, Lua + your application, the whole lot.

Also, I've done a standalone OSX .app that has Luax + all the SDL etc. libraries(!) embedded in it. This would be quite nice for distributing games etc. Size: 2.6MB dmg. :)

-ak


Andy Jones kirjoittaa torstaina, 18. joulukuuta 2003, kello 23:23:

I'm finding this whole thread very interesting, because I'm looking for a Lua+bits that I can do some leisure programming with and maybe introduce my nephew to.

So I downloaded the Lua-lm executable from the Wiki, then the SDL library. However:

=================
loadmodule("SDL")
error: cannot load module SDL:

stack traceback:
   1:  function `loadmodule' [C]
   2:  main of string "loadmodule("SDL")" at line 1
==================

The SDL dll is in the same folder as the rest of Lua-lm.

Any ideas??