Re: [sqlite] Execute the file in minicom(SBC)

2013-04-21 Thread Newbie89
My problem solved...I try to copy the file sqlite lib from usr/local/lib to usr/lib/. -- View this message in context: http://sqlite.1065341.n5.nabble.com/Execute-the-file-in-minicom-SBC-tp68318p68331.html Sent from the SQLite mailing list archive at Nabble.com.

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Stephan Beal
On Sat, Apr 20, 2013 at 6:04 PM, Newbie89 wrote: > bash-2.05a# ldd ./check > libsqlite3.so.0 => not found > libc.so.6 => /lib/libc.so.6 (0xf760a000) > /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0xf772b000) > Then try this: export

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Newbie89
here is my output: bash-2.05a# ldd ./check libsqlite3.so.0 => not found libc.so.6 => /lib/libc.so.6 (0xf760a000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0xf772b000) -- View this message in context:

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Stephan Beal
On Sat, Apr 20, 2013 at 10:59 AM, Newbie89 wrote: > 1)cd /usr/lib/libsqlite3.so > i overlooked that: that cannot have worked because libsqlite3.so is a file, not a directory. Try: cd /usr/lib ln -s libsqlite3.so libsqlite3.so.0 Then: cd rm libsqlite3.so to remove the

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Stephan Beal
On Sat, Apr 20, 2013 at 10:59 AM, Newbie89 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

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Newbie89
Hi,thanks for your reply. I found the file under /usr/lib... then I 1)cd /usr/lib/libsqlite3.so 2)ln -s libsqlite3.so libsqlite3.so.0 the problem still exist... bash-2.05a# ./check ./check: error while loading shared libraries: libsqlite3.so.0: cannot open shared object file: No such file or

Re: [sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Stephan Beal
On Sat, Apr 20, 2013 at 8:53 AM, Newbie89 wrote: > error while loading shared libraries: libsqlite3.so.0: cannot open shared > object file: No such file or directory > How can I fix the problem? > Does your system have a file called libsqlite3.so without the ".0" on the

[sqlite] Execute the file in minicom(SBC)

2013-04-20 Thread Newbie89
I'had find some problem when execute the file.As shown below: error while loading shared libraries: libsqlite3.so.0: cannot open shared object file: No such file or directory How can I fix the problem? Any help? Thanks -- View this message in context: