lua-users home
lua-l archive

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


Quoth Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>, on 2011-01-21 08:13:06 -0200:
> > error loading module 'sqlite3' from file './sqlite3.so':
> >         Unable to resolve symbol
> 
> Now, that seems related to stripping the lua binary.

I wouldn't be so sure.  If that DSO is trying to resolve Lua API
symbols in the executable that have since been stripped, an error much
like that one would be propagated on a "plain" GNU/Linux.  (I don't
know what the specific system in question might do differently.)  It
seems plausible that a strip command designed for embedded systems
would destroy those symbols by mistake.

   ---> Drake Wilson