lua-users home
lua-l archive

Re: Any help to run this ?

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


* On 2010年12月23日 Shamun toha md <shamun.toha@gmail.com> wrote :
> Its keep giving the error. What can be the issue ?
> 
> 
> [sun@example proteaAudio_lua_090204]$ lua example.lua
> lua: error loading module 'proAudioRt' from file './proAudioRt.so':
> 
> liblua5.1.so.0: cannot open shared object file: No such file or
It seems your proAudioRt.so module is linked to liblua5.1.so.0, but the
latter can not be found when loading the module.
You might want to try the 'ldd' command to find out how all required
libraries are resolved:
 $ ldd ./proAudioRt.so
I would expect something like
 liblua5.1.so.0 => not found
in the resulting output, meaning that proAudioRt.so is looking for a
library called liblua5.1.so.0, which is nowhere to be found by the
dynamic linker.
Try to see if your linux distribution has a package available which
provides the missing library. On debian/ubuntu you might want to try
to install liblua5.1-0 and liblua5.1-0-dev.
-- 
:wq
^X^Cy^K^X^C^C^C^C

AltStyle によって変換されたページ (->オリジナル) /