On Sat, Apr 20, 2013 at 10:59 AM, Newbie89 <sh_ta...@hotmail.com> wrote:

> bash-2.05a# ./check
> ./check: error while loading shared libraries: libsqlite3.so.0: cannot open
> shared object file: No such file or directory
>

What does this output:

ldd ./check

?

That will show you which libraries your app is linked against and where
they can be found. If it cannot find libsqlite3.so.0 then (A) it will say
so and (B) it just means that the library is not in your lib search path.
Show us your ldd output and then we can recommend the next thing to try.

-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to