Re: [sqlite] Windows dll - Export Symbol

2019-03-27 Thread Larry Brasfield
Keith Medcalf, (quoting Llyod), writes: >> >How can I build the dll correctly? > cl -DSQLITE_API=__declspec(dllexport) sqlite3.c -link -dll -out:sqlite3.dll I do not claim here that “correctly” building the DLL must be done as either I or Keith has suggested. However, the method using

Re: [sqlite] Windows dll - Export Symbol

2019-03-27 Thread Keith Medcalf
On Wednesday, 27 March, 2019 07:18, Lloyd wrote: >I wish to build SQLite as a dll in Windows. As per the documentation >here >https://www.sqlite.org/howtocompile.html, I have executed the command >cl sqlite3.c -link -dll -out:sqlite3.dll >on Visual Studio x86 command prompt. >It seems that the

[sqlite] Windows dll - Export Symbol

2019-03-27 Thread Larry Brasfield
Lloyd writes: I wish to build SQLite as a dll in Windows. As per the documentation here https://www.sqlite.org/howtocompile.html, I have executed the command cl sqlite3.c -link -dll -out:sqlite3.dll on Visual Studio x86 command prompt. It seems that the dll built doesn't export any symbols! I

[sqlite] Windows dll - Export Symbol

2019-03-27 Thread Lloyd
Hi, I wish to build SQLite as a dll in Windows. As per the documentation here https://www.sqlite.org/howtocompile.html, I have executed the command cl sqlite3.c -link -dll -out:sqlite3.dll on Visual Studio x86 command prompt. It seems that the dll built doesn't export any symbols! I checked it