Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-07 Thread Clive Hayward
Tobias, Heres how you can make your own shared library under Mac OS X. Download http://www.sqlite.org/download.html/sqlite-amalgamation-3071300.zip # In the terminal export LD_LIBRARY_PATH=. # Make the library call it libsqlite3_mybuild.dylib gcc -o libsqlite3_mybuild.dylib sqlite3.c

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Simon Slavin
On 6 Aug 2012, at 11:48pm, Tobias Giesen wrote: >> Do you absolutely need to use a dynamic library ? > > I have spent a full day trying to compile & link the c and h file with > my Pascal code and I have given up. The DB library I have expects a > dylib so I will have

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Tobias Giesen
> Do you absolutely need to use a dynamic library ? I have spent a full day trying to compile & link the c and h file with my Pascal code and I have given up. The DB library I have expects a dylib so I will have to feed it what it can eat. Trouble is, I don't know how to build the dylib either

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Tim Streater
On 06 Aug 2012 at 22:49, Simon Slavin wrote: > On 6 Aug 2012, at 10:29pm, Tobias Giesen wrote: > >> would you be willing to share your dylib with me? I don't know how to >> do this with Xcode. > > Do you absolutely need to use a dynamic library ?

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Simon Slavin
On 6 Aug 2012, at 10:29pm, Tobias Giesen wrote: > would you be willing to share your dylib with me? I don't know how to > do this with Xcode. Do you absolutely need to use a dynamic library ? The recommendation from the SQLite team is that people build sqlite3 into

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Tobias Giesen
Hello, would you be willing to share your dylib with me? I don't know how to do this with Xcode. Cheers Tobias > On 04 Aug 2012 at 11:54, Tobias Giesen wrote: > > > I was able to compile the sqlite3 shell, but how to create the latest > > dylib, or where can I

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-06 Thread Tim Streater
On 04 Aug 2012 at 11:54, Tobias Giesen wrote: > I was able to compile the sqlite3 shell, but how to create the latest > dylib, or where can I download it? I use xcode for this purpose, using the amalgamation. -- Cheers -- Tim

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-04 Thread Tobias Giesen
Hi, great I will try it! Cheers, Tobias > On 4 Aug 2012, at 11:54am, Tobias Giesen wrote: > > > I was able to compile the sqlite3 shell, but how to create the latest > > dylib, or where can I download it? > > The most accepted way to write an application which uses

Re: [sqlite] How to build a new sqlite3.dylib?

2012-08-04 Thread Simon Slavin
On 4 Aug 2012, at 11:54am, Tobias Giesen wrote: > I was able to compile the sqlite3 shell, but how to create the latest > dylib, or where can I download it? The most accepted way to write an application which uses the sqlite3 API is to include the .c and .h file from

[sqlite] How to build a new sqlite3.dylib?

2012-08-04 Thread Tobias Giesen
Hello, I was able to compile the sqlite3 shell, but how to create the latest dylib, or where can I download it? Many thanks. Kind Regards, Tobias Giesen ___ sqlite-users mailing list sqlite-users@sqlite.org