[sqlite] Sqlite3 is not compiling in Linux

2009-04-14 Thread Pramoda M. A
Hi All, I tried to compile in Linux. But it is giving error at linking stage as 'unreferenced dlopne dlclose... Can anybody help me? With Regards Pramoda.M.A KPIT Cummins Infosystems Limited | Bengaluru | Board: +91 80 30783905 ___ sqlite-u

Re: [sqlite] Sqlite3 is not compiling in Linux

2009-04-14 Thread Vivien Malerba
2009/4/14 Pramoda M. A > Hi All, > > > > I tried to compile in Linux. But it is giving error at linking stage as > 'unreferenced dlopne dlclose... > > Can anybody help me? did you add the -ldl linker flag? Vivien ___ sqlite-users mailing list sqlite-

Re: [sqlite] Sqlite3 is not compiling in Linux

2009-04-14 Thread Vivien Malerba
2009/4/14 Pramoda M. A > What I have done is, > > Cc -lpthread sqlite3.o ourApplication.o -o main > > Then it is giving linker error. Is it right? try instead: cc -lpthread -ldl sqlite3.o ourApplication.o -o main Vivien ___ sqlite-users mailing list

Re: [sqlite] Sqlite3 is not compiling in Linux

2009-04-14 Thread Pramoda M. A
: General Discussion of SQLite Database Subject: Re: [sqlite] Sqlite3 is not compiling in Linux 2009/4/14 Pramoda M. A > Hi All, > > > > I tried to compile in Linux. But it is giving error at linking stage as > 'unreferenced dlopne dlclose... > > Can anybody help me? did