Daniel Berger
2012-May-14 16:16 UTC
[Win32utils-devel] Building sqlite3 with Visual Studio
Hi, I''m trying to build sqlite3 from source using Visual Studio 10. I used the sqlite-autoconf source files, and created a project from those. Once I remove the tcl related files I was able to successfully build a DLL file. However, when I run dumpbin /exports on it, there don''t appear to be any functions exported. I also noticed that no .def file was generated. Any ideas? Regards, Dan
Daniel Berger
2012-May-15 04:24 UTC
[Win32utils-devel] Building sqlite3 with Visual Studio
On Mon, May 14, 2012 at 10:16 AM, Daniel Berger <djberg96 at gmail.com> wrote:> Hi, > > I''m trying to build sqlite3 from source using Visual Studio 10. I used > the sqlite-autoconf source files, and created a project from those. > > Once I remove the tcl related files I was able to successfully build a > DLL file. However, when I run dumpbin /exports on it, there don''t > appear to be any functions exported. I also noticed that no .def file > was generated. > > Any ideas?Well, I''ve gotten further along thanks to this article: http://eli.thegreenplace.net/2009/09/23/compiling-sqlite-on-windows/ It''s still complaining about sqlite3_rtree_geometry_callback however. Dan
Daniel Berger
2012-May-15 04:38 UTC
[Win32utils-devel] Building sqlite3 with Visual Studio
On Mon, May 14, 2012 at 10:24 PM, Daniel Berger <djberg96 at gmail.com> wrote:> On Mon, May 14, 2012 at 10:16 AM, Daniel Berger <djberg96 at gmail.com> wrote: >> Hi, >> >> I''m trying to build sqlite3 from source using Visual Studio 10. I used >> the sqlite-autoconf source files, and created a project from those. >> >> Once I remove the tcl related files I was able to successfully build a >> DLL file. However, when I run dumpbin /exports on it, there don''t >> appear to be any functions exported. I also noticed that no .def file >> was generated. >> >> Any ideas? > > Well, I''ve gotten further along thanks to this article: > > http://eli.thegreenplace.net/2009/09/23/compiling-sqlite-on-windows/ > > It''s still complaining about sqlite3_rtree_geometry_callback however.Aha, had to add SQLITE_ENABLE_RTREE to the preprocessor definitions. Works now. :) Regards, Dan