lua-users home
lua-l archive

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


> 2014-04-15 15:46 GMT+02:00 Roberto Ierusalimschy <roberto@inf.puc-rio.br>:
> 
> > Can you be more concrete about LPeg? I have been testing LPeg both
> > with Lua 5.2 and Lua 5.3 and did not see any difference.
> 
> The `lpeg.so` made for Lua 5.2 by `luarocks install lpeg` under Ubuntu 12.04
> is loaded without error by Lua 5.3.

As we discussed in the list recently, Lua 5.3 is not ABI compatible with
Lua 5.2. You do need to recompile LPeg (and practically any C library) to
use it with Lua 5.3.

-- Roberto