3

Is there a way to use lanes library inside luajit 2 ?

As far as I got, there is a limitation in luajit that lua_dump() c-api function is not supported. Is there some other way to get code chunk of given function ?

Alex
  • 2,837
  • 5
  • 25
  • 27

2 Answers2

9

Status update: I happened to be looking into the same issue recently.

From the lua-list a few days ago: Lanes 3.0 beta is out, and supporting LuaJIT 2

link to announcement

simon
  • 7,044
  • 2
  • 28
  • 30
3

The maintainer of Lanes recently wrote this message about LuaJIT2 status; summary: it's not working yet.

That same thread has some links to lua-llthreads and lua-zmq that work with LuaJIT2 and may be of interest to you.

Doug Currie
  • 40,708
  • 1
  • 95
  • 119
  • 1
    It seams that LuaJIT 2.0.0-beta8 version has support for bytecode loading/saving. – Alex Jun 26 '11 at 19:41