[sqlite] HELP - CREATING A SQLITE3 BINARY INSTEAD OF A BASH

2007-09-10 Thread Uma Krishnan
Hello, I'm trying to debug sqlite3. But in order for me to do that, I need sqlite3 binary. The makefile generates a bash file. I'm confused as how that happens. After all, gcc is used to generate sqlite3 executable Any pointers will be much appreciated. Thanks Uma

Re: [sqlite] HELP - CREATING A SQLITE3 BINARY INSTEAD OF A BASH

2007-09-10 Thread Dan Kennedy
On Mon, 2007-09-10 at 10:01 -0700, Uma Krishnan wrote: Hello, I'm trying to debug sqlite3. But in order for me to do that, I need sqlite3 binary. The makefile generates a bash file. I'm confused as how that happens. After all, gcc is used to generate sqlite3 executable Any pointers

Re: [sqlite] HELP - CREATING A SQLITE3 BINARY INSTEAD OF A BASH

2007-09-10 Thread Joe Wilson
autoconf generates the sqlite3 script when libsqlite3.so is used to set up the LD_LIBRARY_PATH. To avoid this, build a static sqlite3. ./configure --disable-shared make clean make sqlite3 optional: file sqlite3 ldd sqlite3 --- Uma Krishnan [EMAIL PROTECTED] wrote: I'm trying to

Re: [sqlite] HELP - CREATING A SQLITE3 BINARY INSTEAD OF A BASH

2007-09-10 Thread Uma Krishnan
Thanks Joe and Dan Yes, I now have the binary file. Much appreciated - Uma Joe Wilson [EMAIL PROTECTED] wrote: autoconf generates the sqlite3 script when libsqlite3.so is used to set up the LD_LIBRARY_PATH. To avoid this, build a static sqlite3. ./configure --disable-shared