> Please Help.... > > Is there a good tutorial that shows how to compile SQLite for both > Windows 32 bit & 64bit? > > If ICU is required then I need the files to be statically linked rather > than having any external dependencies. > > Anyone know of a good tutorial for building both a 32bit & 64bit DLL > with any decencies statically linked?
Have you considered just adding the sqlite amalgamation to your project and compiling it in? That's how my company uses SQLite and supports both 32bit and 64bit windows. Doesn't get much easier than a single .c file and a single .h file. Also, there is a binary-form sqlite DLL that only depends on the standard windows C library MSVCRT.DLL (that comes with Visual Studio 6, but I think most versions of Windows ship with it too, afaik). I don't think you can get rid of that dependency without risking other issues with duplicate symbols. -Brad _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users